View Full Version : CSS Style sheets
  
AllenSantiago
12-06-2012, 01:52 AM
As we know there are three kinds of style sheet i.e. external style sheet, internal style sheet and inline style and often used for presenting styles of the webpage or document however I would like to be familiar with which one is better to create style of the document or webpage and also save lots of work.
Labexpress
12-06-2012, 10:01 AM
As we know there are three kinds of style sheet i.e. external style sheet, internal style sheet and inline style and often used for presenting styles of the webpage or document however I would like to be familiar with which one is better to create style of the document or webpage and also save lots of work.
Css helps to reduce the code and that indirectly helps to make loading time good  for Web pages .Thanks
jaysh4922
12-07-2012, 08:28 AM
cascading style sheets is a simple mechanism for adding style to web documents.The unique features are that css can be used to style HTML or XML doc.For example, XSL can be used to transform XML data into HTML/CSS documents on the Web server. This way, the two languages complement each other and can be used together.
hearty
12-07-2012, 09:05 AM
cascading style sheets is a simple mechanism for adding style to web documents.The unique features are that css can be used to style HTML or XML doc.For example, XSL can be used to transform XML data into HTML/CSS documents on the Web server. This way, the two languages complement each other and can be used together.
CSS is Helps to Reduce the Code and build Attractive layout  Web pages . CSS is Refers to Cascaded Style Sheet . As Code is Simple and Neat , no difficulty to understand and pages are Easily maintained .
laurasafila
12-11-2012, 03:36 AM
CSS mean cascading style sheet, it help us design website in layout, it's very useful in website design, many tag such as size, div, color, frame...ect are set in css only one time and all will be effected on all page!
mitapaul16
12-15-2012, 05:00 AM
External style sheets are the most flexible because they allow you to assign the same styles to multiple Web pages. You can attach external style sheets in two ways: 
  <link rel="stylesheet" type="text/css" href="styles.css" />
  @import url(addonstyles.css);
   
  An internal stylesheet is added to the head of the page. An inline style is applied to an HTML element.
ashimasalim
12-17-2012, 02:34 AM
3 Types of CSS styles:
Inline styles
Inline styles are styles that are written directly in the tag on the document. Inline styles affect only the tag they are applied to.
Embedded styles
Embedded styles are styles that are embedded in the head of the document. Embedded styles affect only the tags on the page they are embedded in.
External styles
External styles are styles that are written in a separate document and then attached to various Web documents. External style sheets can affect any document they are attached to.
 
Powered by vBulletin® Version 4.2.4 Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.