Welcome to the Googles Club! We have forums, a chatbox, a wiki, and a lot more! Be sure to check out the news page often. Please read the forum and chatbox rules before posting. :)
 
HomeGC NewsLatest imagesRegisterLog in

Share
 

 [Tutorial] CSS

View previous topic View next topic Go down 
AuthorMessage
Ryan
Member
Ryan

Posts : 7
Join date : 2012-02-29
Location : England, United Kingdom

[Tutorial] CSS Empty
PostSubject: [Tutorial] CSS   [Tutorial] CSS I_icon_minitimeSat Mar 31, 2012 5:47 pm

The CSS (cascade style sheet) language is pretty easy to learn. It's very vital for all web designers any anything else involving said web design. This tutorial will cover the basics of CSS to intermediate.

Let's start!

1. A rule in CSS is basically what you call the snippet of CSS, example:
Code:
.example {}

2. You must always start and end with "{" which starts the rule off, and end the rule with "}"

3. defining between div class and div id and targeting more than one div, these are always what confuse certain people, example:
Code:
.example, .example2 {}
that means it's targeting two div tags which would be,
Code:
<div id="example"></div> and <div id="example2"></div>
and the classes would be, example:
Code:
#example {} #example2 {}
which in HTML are
Code:
<div class="example"></div> and <div class="example"></div>
but all in one CSS rule. It's pretty handy for economising and keeping things tidy.

Not yet finished

Back to top Go down
http://www.devforumz.com
Labs
Administrator


Posts : 7575
Join date : 2011-10-22

[Tutorial] CSS Empty
PostSubject: Re: [Tutorial] CSS   [Tutorial] CSS I_icon_minitimeSun Apr 15, 2012 2:03 pm

Great guide, Ryan
Back to top Go down
uniquecowgirl
Member
uniquecowgirl

Posts : 773
Join date : 2011-10-15

[Tutorial] CSS Empty
PostSubject: Re: [Tutorial] CSS   [Tutorial] CSS I_icon_minitimeThu Jun 14, 2012 4:20 pm

Thanks for the guide! :D
Back to top Go down
Sponsored content




[Tutorial] CSS Empty
PostSubject: Re: [Tutorial] CSS   [Tutorial] CSS I_icon_minitime

Back to top Go down
 

[Tutorial] CSS

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

Permissions in this forum:You cannot reply to topics in this forum
 :: Guides-