Affiliate Marketing
Pay Per Click
Other
Needs
Read more...
A rule or "rule set" is a statement that tells browsers how to render particular elements on an HTML page. A rule set consists of a selector followed by a declaration block.
The selector "selects" the elements on an HTML page that are affected by the rule set. The selector consists of everything up to (but not including) the first left curly bracket. For example:
h1 { color: blue; margin-top: 1em; }The declaration block is a container that consists of anything between (and including) the curly brackets. Whitespace inside a declaration block is ignored - so it can be used to lay out rules in any way you want. For example:
h1 { color: blue; }Or, with whitespace added to aid readability:
h1The declaration tells a browser how to draw any element on a page that is selected. A declaration consists of a property and a value, separated by a colon ":". Although it is not essential to add a semicolon after a single declaration, it is recommended that you finish the last declaration in a block with a semicolon. For example:
h1 { color: blue; }The property is the aspect of that element that you are choosing to style. There can only be one property within each declaration. For example:
p { padding: 5px; }The value is the exact style you wish to set for the property. For example:
p { padding:5px; }I want to thank you all for coming to class this week. The files for this weeks class are here both as downloads and as step by step webpages
In class Wednesday evening we were able to define ourt first Dreamweaver site and to do a small case study for creating a websites parent directories with its child folders and files.
"Here" you can view the my simple introductory Internet Over View presentation. Click here to download the pdf file "Here""Here" you can view the case study of creating a new site and a keyword correct file structure. Click here to download the pdf file "Here"
Read more..."Here" you can view the case study of creating a new site and a keyword correct file structure. Click here to download the pdf file "Here"
Read more...Creating selections with the Selection Tools
Read more...