blob: 8d7057a0cf80fa688a6ea499a1c9153191a95300 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<html>
<head><style>
.float { float: left } /* Just using for shrink-wrapping */
.orange { background: orange }
</style></head>
<body>
The orange box should only be as wide as its text.<br>
<div class="float orange">foo</div>
</body>
</html>
|