blob: 1417352966fd2ead5ada3afc459ac5a08969e4f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head><style>
fieldset, legend { margin: 0px; padding: 0px; }
fieldset {
width: 20em;
text-align: right;
border: 0px;
}
.orange { background: orange }
</style></head>
<body>
The orange box should only be as wide as its text.
<fieldset>
<legend class="orange">foo</legend>
</fieldset>
</body>
</html>
|