CSS Background Attributes Example
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>HTML/XHTML: » CSS Background Attributes Example</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <style type="text/css"> body {background-color: green;} .red {background-color: red;} </style> </head> <body> <div class="content"> <p>This is a paragraph of text. <span class="red">Backgrounds anywhere!</span> This is even more text.</p> </div> </body> </html>