mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
344 B
HTML
18 lines
344 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<title>Test for calc() on background-size</title>
|
||
|
<style>
|
||
|
|
||
|
p {
|
||
|
height: 50px; width: 200px;
|
||
|
border: thin solid;
|
||
|
background-image: url(../backgrounds/blue-32x32.png);
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
#one { background-size: 150px 20px; }
|
||
|
#two { background-image: none }
|
||
|
|
||
|
</style>
|
||
|
<p id="one"></p>
|
||
|
<p id="two"></p>
|