servo/tests/ref/width_nonreplaced_block_simple_a.html
2014-09-08 20:21:42 -06:00

23 lines
347 B
HTML

<html>
<head>
<style>
#first {
position: relative;
width: 100px;
height: 100px;
border: solid 1px;
}
#block {
height: 50px;
width: 50%;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="block">
</div>
</div>
</body>
</html>