tenfourfox/layout/reftests/position-dynamic-changes/vertical/style.css

20 lines
286 B
CSS
Raw Normal View History

2017-04-19 07:56:45 +00:00
#parent {
position: relative;
width: 400px;
height: 400px;
background: red;
border: 0 solid black;
}
#child {
position: absolute;
width: 100px;
left: 100px;
background: blue;
border: 0 solid black;
}
.floatTop {
width: 10px;
height: 10px;
background: green;
}