tenfourfox/layout/reftests/position-dynamic-changes/horizontal/style.css
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
302 B
CSS

#parent {
position: relative;
width: 400px;
height: 400px;
background: red;
border: 0 solid black;
}
#child {
position: absolute;
height: 100px;
top: 100px;
background: blue;
border: 0 solid black;
}
.floatLeft {
width: 50px;
height: 10px;
background: green;
float: left;
}