15 lines
347 B
HTML
15 lines
347 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<p>
|
||
|
|
The words floated and inline should be legible below, with inline appearing just
|
||
|
|
to the right of the border surrounding floated.
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<table>
|
||
|
|
<caption style="text-align:left; width:200px">
|
||
|
|
<div style="float:left; border: 1px solid black;">
|
||
|
|
floated
|
||
|
|
</div>
|
||
|
|
inline
|
||
|
|
</caption>
|
||
|
|
</table>
|