Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.
2006-06-27 00:11:01
·
answer #1
·
answered by Anonymous
·
3⤊
1⤋
Rather than putting, for instance, font colour and size information in a tag around each piece of text, you can specify that all tags of a particular type have a style that you set once in a cascading style sheet. This can either be in a style block at the top of each page, or in a separate .css file that multiple pages can link to.
2006-06-27 00:13:20
·
answer #2
·
answered by Anonymous
·
0⤊
0⤋
cascading style sheets are a new way of formatting your page layout, text, fonts, images, and almost anything you put on the page. they allow you to postition things on your page down to the exact pixel. Also, if a style is declared in the head section of a page, a change to the style changes the style on the entire page. We'll get to the details in later tutorials, but here is the general idea:
Let's say you created a style for a heading tag,
. In your style, you set the color of your H3 tags to red. Now if you have 10 H3 tags on the page, and decide you would rather have your headings be blue, you would no longer need to go back and change the font color for each heading. All you have to do is change the style of your H3 tags from the color red to blue. Changing the style once will adjust all of your H3 tags and they will now be all blue instead of red, with alot less work.
This gets even better if you use an external style sheet for more than one page. Changing the style properties in the external style sheet will now adjust every page that uses that style sheet, so you can avoid editing each page individually to change it!
2006-06-27 00:12:22
·
answer #3
·
answered by 942 5
·
0⤊
0⤋
This is a file that contains defintions that are grouped together to provide a "style" and some behavior. These can include things like the font used, size of the font, the same properties when the mouse hovers over something, etc.
The style attributes can be called specifically by a class name, or you can have a class defined that also defines other stuff (like if you define the BODY class ... for the BODY tag in HTML) and define the sub tags found in a BODY under that.
2006-06-27 00:11:39
·
answer #4
·
answered by cliffinutah 4
·
0⤊
0⤋
n computing, Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML document, including SVG and XUL. The CSS specifications are maintained by the World Wide Web Consortium (W3C). In order to maintain standards compliance, it is recommended that CSS code be validated before release.
2006-06-27 00:10:13
·
answer #5
·
answered by Anonymous
·
0⤊
0⤋
It describes the presentation format that a document will have. Generally it is used to make a style or theme for multiple pages on a web site, so that a change in the single file will affect all documents that reference it.
2006-06-27 00:12:04
·
answer #6
·
answered by waylandbill 3
·
0⤊
0⤋
It controls the "style" of the html pages. Say You have 100 page web site and you need all the back ground color to "BLUE" and also add that you need to change it to different color twice in a week.
How Will You Do it? Will you change it in 100 pages each Time? No
You create a CSS file, add the necessary style element and link it in 100 pages (only once). then each time, you need to modify in the CSS file only. it will be reflected in all 100 pages
2006-06-27 00:15:23
·
answer #7
·
answered by mpr 1
·
0⤊
0⤋
A Cascading Style Sheet (known as CSS) works as template for your Web pages. Using this (usually small sized) file, you can control the whole layout of your web site. You will save lots of time by learning CSS before starting your web site.
Source for CSS:
en.wikipedia.org/wiki/Cascading_Style_Sheets
here's some reference to learn CSS basics (you can search it yourself though)
http://www.w3.org/Style/CSS
http://www.w3schools.com/css/css_reference.asp
http://www.westciv.com/style_master/academy/css_tutorial
2006-06-27 00:11:43
·
answer #8
·
answered by pak_megan 2
·
0⤊
0⤋
Cascading Style Sheet IS CSS USED FOR ADDING FONT STYLE ,COLOUR,BACKGROUNDCOLOUR HEADING COLOR
MAILY USED FOR FORMATIING.IT IS SAVED WITH .CCS EXTENTION
2006-06-27 01:10:57
·
answer #9
·
answered by sagarnarang33 2
·
0⤊
0⤋