Container style sample |
|
|
This sample shows four containers.
<div style="color: maroon; background-color: orange;">
This text is in the div.
<p style="background-color: silver;">
This is the paragraph.
<a href="nowhere.html">Link to nowhere</a>
<span style="font-style: italic">Text in span.</span>
</p>
</div>
The block container's contents are in different lines.
The containers within a parent containver often inherit properties from their parent container. |
This text is in the div.
This is the paragraph. Link to nowhere Text in span. |