///
O seguinte código aplica CSS na div class="box", deixando-a com cor de fundo no valor rgb(204,204,255).
<html>
<head>
<style>
div.box { border: solid; border-width:
thin; width: 100%; }
div.color {
background: rgb(204,204,255);
padding: 1em;
border: none;
}
</style>
</head>
<body>
<div class="box">
Texto
</div>
</body>
</html>