Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML style definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: block-level element

Syntax

<style> ... </style>

Description

Style defines a style in a document.

Attributes

Attribute Description
type = content type  
media = media desc  
title = text  

Common attributes.

Example

[Try this example yourself]
<style type="text/css" media="all">
.greencolor {
color: green
}
}
</style>
<p class="greencolor">green text</p>

Output

green text

  • Comments

No comments added.