HomeGalleryFAQRegisterLog in
 

CSS Basic: CSS Introduction

View previous topic View next topic Go down 
AuthorMessage
huliosis scoliosis
Administrative Team
Administrative Team


Gender:MaleLeoRat
Age : 24
Joined : 29 Mar 2008
Posts : 150
Location : Rabbit's Hole
Mood : http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif
Points : 
1/1001/1001/1001/100 (1/100)

PostSubject: CSS Basic: CSS Introduction   Thu 10 Apr 2008, 06:57

Title: CSS Introduction
Source: w3schools.com

What You Should Already Know
Before you continue you should have some basic understanding of the following:
  • HTML / XHTML
If you want to study this subject first, find the tutorials at w3schools.com's Home page.

_________________

What is CSS?
  • CSS stands for Cascading Style Sheets
  • Styles define how to display HTML elements
  • Styles are normally stored in Style Sheets
  • Styles were added to HTML 4.0 to solve a problem
  • External Style Sheets can save you a lot of work
  • External Style Sheets are stored in CSS files
  • Multiple style definitions will cascade into one

_________________

CSS Demo
With CSS, your HTML documents can be displayed using different output styles:

See how it works

_________________

Styles Solve a Common Problem

HTML tags were originally designed to define the content of a document. They were supposed to say "This is a header", "This is a paragraph", "This is a table", by using tags like <h1>, <p>, <table>, and so on. The layout of the document was supposed to be taken care of by the browser, without using any formatting tags.

As the two major browsers - Netscape and Internet Explorer - continued to add new HTML tags and attributes (like the <font> tag and the color attribute) to the original HTML specification, it became more and more difficult to create Web sites where the content of HTML documents was clearly separated from the document's presentation layout.

To solve this problem, the World Wide Web Consortium (W3C) - the non profit, standard setting consortium, responsible for standardizing HTML - created STYLES in addition to HTML 4.0.

All major browsers support Cascading Style Sheets.

_________________

Style Sheets Can Save a Lot of Work

Styles sheets define HOW HTML elements are to be displayed, just like the font tag and the color attribute in HTML 3.2. Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in your Web, just by editing one single CSS document!

CSS is a breakthrough in Web design because it allows developers to control the style and layout of multiple Web pages all at once. As a Web developer you can define a style for each HTML element and apply it to as many Web pages as you want. To make a global change, simply change the style, and all elements in the Web are updated automatically.

_________________

Multiple Styles Will Cascade Into One

Style sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the <head> element of an HTML page, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document.

Cascading Order

What style will be used when there is more than one style specified for an HTML element?

Generally speaking we can say that all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number four has the highest priority:

  1. Browser default
  2. External style sheet
  3. Internal style sheet (inside the <head> tag)
  4. Inline style (inside an HTML element)

So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style declared inside the <head> tag, in an external style sheet, or in a browser (a default value).
Back to top Go down
huliosis scoliosis
Administrative Team
Administrative Team


Gender:MaleLeoRat
Age : 24
Joined : 29 Mar 2008
Posts : 150
Location : Rabbit's Hole
Mood : http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif
Points : 
1/1001/1001/1001/100 (1/100)

PostSubject: Re: CSS Basic: CSS Introduction   Thu 10 Apr 2008, 10:08

Angell de Ville wrote:
lolz hulios... you brought w3c here... wenks...

i just hope the members will spend some time with this... hope they'll get the importance of css in their profile...

keep it up..

off:
i remember when I first joined fs, I only used css to overlay my profile...hehehe... no linkers, no codes, just pure css...


@Angell
Regarding the importance of CSS, Yeah, I agree with you on that one. Also, I too used only CSS when I 1st started with Friendster. I never liked javascript in the 1st place. The test of a true profile design rests on how cool your background is and how you've managed to match the font colors and borders to it.

P.S.
Sorry if I deleted your reply. I could not find a way to move it here at the very top. It sort of messed the order of my topics. So I quoted it instead with this new reply.

@all members
Personally, I don't like profiles with alot of unnecessary scripts. I find them unartistic, poorly designed, cluttered and lacking in presentation. Profiles that are jam-packed with senseless scripts tend to slow down some PCs. No offense to some of our members, but I believe a good profile is best shown when you can use the full extent of CSS. It is not the number of chat boxes, alert messages or marqueeing message you have that makes a profile. It is how aesthetically you've executed your profile's design—how everything—from the matching colors of your font to the originality of your background—makes a kick@$$ theme (pardon my french).

_________________
Dare to be Enlightened?
Back to top Go down

CSS Basic: CSS Introduction

View previous topic View next topic Back to top 
Page 1 of 1

Permissions of this forum:You cannot reply to topics in this forum
 :: Tips and Tutorials :: General CSS Knowledge-