please tell me friends that how many types CSS and how can it embeded in html with example. [TABLE="width: 266"] [TR] [TD="class: xl65, width: 266"]NH58 Property [/TD] [/TR] [/TABLE]
CSS or Cascading StyleSheets are using with HTML to style the pages using divs and other things. This cuts out the use of the table layout and is much easier to change one global element than re-write all the pages individually. You can use two types of CSS inline or external. The external version is the one in a separate file. Inline is in the Element of the HTML. Try w3schools.com to get a basic knowledge of this.
three types of CSS styles is important if you're going to use cascading style sheets effectively. here are three 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. Example Of inline styles : <a href="" style="text-decoration: none;"> 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. Example Of embedded styles : <style type="text/css"> p { color: #00f; } </style> 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. Example Of external styles: <link rel="stylesheet" type="text/css" href="styles.css" /> Take Care
There are three types of CSS Internal(embedded)types, Inline styles,External Styles. You can learn more about these in details on google.
based on implementation, there are 3 type of CSS, internenal - inline - external based on leves, there are 3 leves CSS 1 - CSS 2 - CSS 3 based on profiles, there are CSs mobile profile - css print profile - css tv provile got this from w3 site
3 types based on level and implementation. external, internal and inline on implementation basis and css1, css2 and css3 on level basis.
There are three types or level of CSS.. 1.Inline styles 2. External styles 3. embedded styles It is also called CSS1, CSS2 and CSS3. * Inline Styles..Written directly in tag . ex.<a href="" style="text-decoration: none;"> * External styles..Written in seperate document and then attached to document. ex.<link rel="stylesheet" type="text/css" href="styles.css" /> * Embedded styles...Embedded in the heads of the document.Affect tag and documen. ex.<style type="text/css"> p { color: #00f; } </style>
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 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 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.
There are three types of styles. The ones mentioned in all the previous posts and all the ones repeated in the following posts.