What are Stylesheets?
In the late ‘90s, HTML coders noticed that they were retyping the same old tags again and again on the same page, leading to bigger HTML files and above all, time consumption and frustration. You may have found yourself in the same situation, adding in mountains of tags, despite wanting them all the same; or using tricks like invisible gifs for spacing.
Then, someone had a great idea: have one file that defines all the values that those piles of tags would have done, and then have all your pages checking this file and formatting your pages accordingly. You can therefore leave out most of the formatting tags in HTML and use only nice structural elements (like headings, paragraphs and links) — separating structure and presentation.
In late 1996 CSS (Cascading StyleSheets) became a reality, forged by our good friends the» World Wide Web Consortium (W3C). Your styleshedt acts as a partner to your HTML code; taking care of all the layout, fonts, colours and overall look of your site.
Benefits of CSS
Another of CSS’s boons is that you define things once, making it far more efficient than defining everything in HTML on every page. This means:- Pages download faster, sometimes by as much as 50%
- You have to type less code, and your pages are shorter and neater.
- The look of your site is kept consistent throughout all the pages that work off the same stylesheet.
- Updating your design and general site maintenance are made much easier, and errors caused by editing multiple HTML pages occur far less often.
Initially vaguely intimidating, CSS is a well-designed, elegant language. It is hugely important for the future of web design, and has been pivotal in helping designers move away from the problematic, hack-ridden days of presentational HTML tags like
, and allowed us to return to using logical, structural elements which make our sites more accessible.All that, and there are dozens of powerful extra formatting options and possibilities available through stylesheet commands that are not possible through normal HTML. You’ll see these later on when we get on to things like backgrounds, spacing, layers and borders.
Browser Compatibility Note:
The W3C have thus far released two major versions of the CSS specifications: » CSS 1 and » CSS 2, in ’96 and ’98 respectively. These standards work the same as new HTML standards do, with new features added in each subsequent version. CSS 3 is currently under development but won’t be finalised for a few more years.
Browsers began to support stylesheets properly at the version 4 mark. Internet Explorer 3 had some basic understanding, and Netscape Navigator 4.7 was very glitchy. By version 5 of » Internet Explorer the browser was coming close to full compatibility of the first of these two standards, though many bugs in its implementation remained.
Implementation
CSS files are termed “cascading” stylesheets because of two reasons: one stylesheet can cascade, or have influence over, multiple pages. Similarly, many CSS files can define a single page.There are 3 ways to implement css commands into your site:
- Use one CSS file for all your pages. This is the best way to do it.
- Integrate CSS commands into the
head
of each of your documents. - Use the
style
attribute to put CSS code directly into a HTML element.
One Central Stylesheet
This is how you should use most of your CSS. You write just one .css file and have all your pages referencing it. This way, a change to anything in this one file will adjust this thing (a font, for example) across your whole site. You could change your entire colour scheme with one modification if you want, over an unlimited number of pages. That’s one of the things CSS was designed for — flexibility.To create your stylesheet, open a text editor (NotePad or SimpleText will be fine). Remember in the very first lesson on this site, you learned how to save from a text editor into the .html file format? Well, here you’ll be doing roughly the same except your file will have a .css suffix. Just save a blank file as mystyles.css and put it in the same directory as your homepage. Now that you have that, I can show you the syntax used in CSS:
And now a worked example:
p {color: blue; font-size: 120%; }
Just put that one line into your file for the duration of this tutorial. That’s all you need. This rule applies to all paragraph elements. Once you’ve linked the stylesheet to your pages, having this style declaration in your css file would make all the text in your pages enclosed in the
and
tags blue, and sized 120% as big as the default font size.
This is how all the affected paragraphs will be formatted.
Have a look over these rules:- The selector is usually the name of a tag, without its surrounding angle-brackets.
- The braces are {curly}, not [square] or (round).
- After the property name there is a colon, and between each individual part there is asemicolon. Each of these pairs of properties and values is a declaration.
h1 {font-family: Verdana, sans-serif; color: red; font-size: 20px; }
Your stylesheet should look something. If you want to affect multiple selectors with the same CSS formatting, add them all together, with commas:
p, div, h1 {color: #00DDFF; width: 80%; } /* modifies all 3 tags */
As above, you can also add comments to your stylesheet using the /*...*/ delimiters. These can give you or anyone else using your stylesheet vital tips about what’s going on in your code.Attaching Your Stylesheet
Now that you have something in your file, you’ll need to show your pages where their css file is. Put this line of code into thehead
part of any documents you want to read this file:
rel
stands for the file’s ‘RELationship’, and type
shows that it’s a text file acting as a CSS stylesheet. Once you’ve made sure that the href
is correct (it can be defined absolutely or relatively), you should see your pages being formatted with your preferred values. You can link multiple stylesheets to each page if you want, like having one file with all your fonts, another for margins and spacing etc.Individual Style blocks
If you use a common design across all of your site’s pages, you should be using the method above. If, however, a number of pages need some particular styling and you need to override the values you’ve defined in your main stylesheet, you can use the style blocks method. To embed style, put this into yourhead
:
type
attribute here allows browsers to treat this code as CSS. CSS code applied in this way is not technically a stylesheet , but is called an “inline style block.”Using the Style Attribute
If you need to modify one tag on its own you can embed style information into it using thestyle
attribute:style="color: blue; font-family: Arial; ">
This method is useful for once-off formatting, and overriding previously defined properties, but you shouldn’t use it very much. If you find yourself adding the same style to multiple tags, it might be worth your while promoting it to your main stylesheet, to save time and space.
If you’d like to see a fully-functioning stylesheet, you can look at ours: (use Notepad to open). Don’t be overwhelmed by the complexity, as there are some more advanced techniques being used that haven’t been explained yet...
So, that was your introduction. Now, gain some crucial control over your CSS with some slightly more advanced techniques.
0 komentar:
Post a Comment