Cascade Style Sheet Basics
Trotta25
Joined: 2008-07-10
Posts: 1 |
Posted: Thu, 2008-07-10 09:44 |
There are only three parts to Cascade Style Sheets (CSS), and once Website design services will make understand what they are and how to use them, CSS becomes very easy and exciting to use. One of the best parts of CSS is that you can create an external Cascade Style Sheet which you can use for all web pages on your website. You can also have one CSS for all of your articles and a different one for all of your press releases. Making one change in your CSS, you are able to effect changes to a few web pages or to hundreds of web pages without ever touching any of the different web pages themselves. Selector { property: value } The first selector that you come across in all web pages is the body, next might be h1, or the p. In (x)html the code is going to look like this: < body> your web page content goes here< /body>: or, < h1> Your headline text goes here< /h1> ; or, < p> your paragraph text goes here< /p> . |
|