mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
11 lines
254 B
HTML
11 lines
254 B
HTML
<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>
|