
Originally Posted by
waxdoc
There are many HTML/CSS reference books and online tutorials that might help you get started.
"INHERIT": a child inherits from parent (e.g., containing <DIV>).
CSS = Cascading Style Sheets ... CSS style rules can be (1) external linked, (2) embedded, (3) inline attributes of tag. Embedded styles supersede linked styles, styles listed after others on page supersede those listed before ... the "cascading effect" of CSS.
You can define multiple style rules in one CSS file that apply to different segments of page (e.g., DIVs, table cells, etc,). A style CLASS that appears several times on page starts with a period/dot . while a unique ID starts with a hash mark # and should only appear once.
<TABLES> should be avoided for layot purposes.
As noted earlier, <iframe> is an inline element that can contain separate page content.