Embedded style is the style attached to one specific document. The style information is specified as a content of the STYLE element inside the HEAD element and will apply to the entire document.
<HEAD> <STYLE
TYPE="text/css"> <!-- P {text-indent: 10pt}
--> </STYLE> </HEAD>
Note: The styling rules are written as a HTML comment, that is, between
<!-- and -->
To hide the content in browsers without CSS support which would otherwise be displayed?
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Embedded style is the style attached to one specific document. The style information is specified as a content of the STYLE element inside the HEAD element and will apply to the entire document.
Note: The styling rules are written as a HTML comment, that is, between
<!-- and -->
To hide the content in browsers without CSS support which would otherwise be displayed?