Css inline style sheets
Inline style sheets is a term that refers to style sheet information being applied to the current element. By this, I mean that instead of defining the style once, then applying the style against all instances of an element (say the <P> tag), you only apply the style to the instance you want the style to apply to. Actually, it's not really a style sheet as such, so a more accurate term would be inline styles.
Example
Normal HTML
<P>
Using normal HTML (not using inline style sheets).
</p>
Using inline style sheets
<P style="font-size: x-large; color: #ff9900">
Using inline style sheets - or is that inline styles?
</p>
welcome to our site we are waiting your comments
ReplyDelete