mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
2940bf2f84
These series of tests attempt to ensure conformance to the CSS 2.1 sections 10.3.7 and 10.6.4.
23 lines
331 B
CSS
23 lines
331 B
CSS
#parent {
|
|
position: relative;
|
|
width: 400px;
|
|
height: 400px;
|
|
background: red;
|
|
border: 0 solid black;
|
|
}
|
|
#child {
|
|
position: absolute;
|
|
left: 300px;
|
|
top: 200px;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
background: blue;
|
|
border: 0 solid black;
|
|
}
|
|
.floatLeft {
|
|
width: 50px;
|
|
height: 10px;
|
|
background: green;
|
|
float: left;
|
|
}
|