Introduction
It is time to take your web designing skills to the next level.
C
ascading
S
tyle
S
heets (CSS) are away to control the look and feel of your HTML documents in an organized and efficient manner. WithCSS you will be able to:
•
Add new looks to your old HTML
•
Completely restyle a web site with only a few changes to your CSS code
•
Use the "style" you create on any webpage you wish!A style sheet can, and should be, completely separate from your HTML documents. Whenyou have mastered CSS and HTML you will be able to separate your web site's design andformatting(CSS) from the content(HTML).
Intended Audience
Before you begin the CSS Tutorial we suggest that you check to see you meet the followingrecommendations:
•
You have used HTML in the past
•
You know the basic HTML tags and vocabulary.
•
You want to be a better web designer!If you do not, we recommend that you check out our
before taking on CSS.When you are ready, continue the tutorial to learn about the basic form of CSS and where youshould place your CSS code.
CSS Selector
CSS selectors are the heart and soul of CSS. They define which HTML elements you are going tobe manipulating with CSS code and you should have a solid understanding of them before continuingon in this tutorial. Lucky for you, they are pretty simple to comprehend!
CSS Selector: Where It Fits In
In a typical CSS statements you have the following:
•
SELECTOR { PROPERTY: VALUE }Where the property is the CSS element you wish to manipulate and "VALUE" represents the valueof the specified property.
CSS Selector Name
The selector name is a direct relationship to the HTML tag you want to edit. If you wanted tochange the way a paragraph tag behaved the CSS code would look like:
Leave a Comment