Manual de hojas de estilo CSS
Ejemplo con dos selectores
<html> <head>
<title> Ejemplo </title>
<STYLE>
.fuentes
{font: bold 18px red}
.fondobeige
{background-color:beige;width:300}
</STYLE>
</head> <body>
<center>
<P class="fondobeige fuentes">
Este texto tiene dos selectores</br>
Los selectores son:
fondobeige y fuentes
</P>
</body> </html>