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

24 lines
364 B
HTML

<html>
<head>
<style>
#first {
width: 100px;
height: 100px;
border: solid 1px;
}
#float {
float: left;
height: 50px;
width: 50px;
max-width: 40px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="float">
</div>
</div>
</body>
</html>