mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|