22 lines
532 B
HTML
22 lines
532 B
HTML
<HTML>
|
|
<HEAD>
|
|
<STYLE type="text/css">
|
|
.w1 { width: 100px; border: solid 2px green; }
|
|
.w2 { width: 50%; border: solid 2px green; }
|
|
.w3 { width: 100%; border: solid 2px green; }
|
|
</STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
Verify that width does not apply to inline frames:<BR>
|
|
<B CLASS=w1>
|
|
This box should NOT be 100 pixels wide with zero margins.
|
|
</B>
|
|
<B CLASS=w2>
|
|
This box should NOT be half the width of its parent.
|
|
</B>
|
|
<B CLASS=w3>
|
|
This box should be NOT be 100% the width of its parent.
|
|
</B>
|
|
</BODY>
|
|
</HTML>
|