HTML/CSS/XML/tag style

Материал из Web эксперт
Перейти к: навигация, поиск

Add style to tag

   <source lang="html4strict">



<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> <?xml-stylesheet type="text/css" href="xml-block.css"?> <MyRoot>

   T<MyElement>d</MyElement> a.

</MyRoot> MyRoot {

   display: block;
   background: lightgrey;

} MyElement {

   display: inline;
   font-weight: bold;
   font-style: italic;
   color: red;

}

</source>