
- Forum
- Programming Talk
- Html
- CSS Learning
CSS Learning
This is a discussion on CSS Learning within the Html forums, part of the Programming Talk category; Iam newbie to CSS?how to start learning css in easy ways?...
-
11-07-2006, 10:19 PM #1
- Join Date
- Feb 2006
- Answers
- 11
CSS Learning
Iam newbie to CSS?how to start learning css in easy ways?
-
learning CSS
hello sreinivas
Here are complete CSS Training Tutorials.
http://www.exforsys.com/content/category/17/278/365/
-
CSS stands for Cascading Style Sheet
It is very easy - you can learn it within a day
CSS can be defined within HTML file or as an external file
They save lot of work.
Imagine you want your website you to have a uniform look
A header, A Body, A footer
A Body may have Headings, Titles, Tables, Body Text
Now All you need to do is write a .CSS file which holds attributes for each and every entity you choose to define.
Say for example:
h1
{
font-family: verdana;
}
The above CSS statment specifies that Verdana Font will be applied for all Heading1
Simple as that, you can create advance styles and multiple classes
< link rel="stylesheet" type="text/css" href="somestylesheet.css" / >
The above line specifies that styles to be picked from somestylesheet.css
Get more from here
http://www.exforsys.com/content/category/17/278/365/
There are 15 tutorials
You can learn fast.
-
srinivas try learning CSS3 which has more features on Cascading style sheets. You have very good articles to learn about CSS3 in detail placed in
http://www.exforsys.com/tutorials/css3.html
The above link explains CSS3 in a detailed manner. Try out and let us know.
-
08-23-2011, 04:08 AM #5
- Join Date
- Aug 2011
- Location
- Hyderabad
- Answers
- 22
W3schools is the best website. You can practice there live. So that you can gain knowledge faster.
-
CSS integration are done by 3 types
Inline style - Inline style styles, Where style property are used to define CSS in each element level
Internal style sheet - style definitions are included within of head section.
this style definitions are affected current page only.
External style sheet - this is also done in head section though tag
-
Sponsored Ads

Reply With Quote





