mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
10 lines
221 B
HTML
10 lines
221 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
#gradient {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-image: conic-gradient(black 25%, white 0 50%, black 0 75%, white 0);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|