mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
395 B
HTML
23 lines
395 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
height: 30px;
|
|
width: 100px;
|
|
background-image: url("white-rect-with-viewbox.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: 30px;
|
|
background-size: 40px 30px;
|
|
background-color: yellow;
|
|
}
|
|
body {
|
|
background-color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|