DIV with class name set up for font, size, background color and color : div background « Tags « HTML / CSS






DIV with class name set up for font, size, background color and color

    
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#navsite {
 font-family: Verdana, Helvetica, Arial, sans-serif;
 font-size: 0.7em;
 font-weight: bold;
 width: 12em; 
 border-right: 1px solid #666; 
 padding: 0; 
 margin-bottom: 1em; 
 background-color: #9cc; 
 color: #333; 
}
</style>
</head>

<body>
  <div id="navsite">
   <p>Site navigation:</p>
   <ul>
    <li><a href="">Home</a></li>
    <li><a href="">About</a></li> 
    <li><a href="">Archives</a></li>
    <li><a href="">Writing</a></li>
    <li><a href="">Speaking</a></li>
    <li><a href="">Contact</a></li>
   </ul>
  </div>
</body>
</html>

   
    
    
  








Related examples in the same category

1.div background: rgb(218, 220, 243);
2.div background: lightyellow;
3.DIV background: black;
4.div::before background: black;
5.div background: #000;
6.div with background image
7.Div background: url(images/bg.gif) top left repeat-y;
8.Div background-image: url(images/date.gif);
9.Div background-position: right -1px;
10.Div background-repeat: no-repeat;
11.Div background-color: #C58A3B;
12.DIV background: #BD9C8C;
13.div background-position: 10px 10px;
14.div background-position: 10% 10%;
15.div background-position: top left;
16.div background-position: top center;
17.div background-position: top right;
18.div background-position: right center;
19.div background-position: bottom right;
20.div background-position: bottom center;
21.div background-position: bottom left;
22.div background-position: left center;
23.div background-position: center center
24.div background-position: top 10px;
25.div background-position: 10px top;
26.div background-position: center 50%;
27.div background-position: 50% center;
28.div background-position: 50% 10px;
29.div background-position: 10px 50%;
30.DIV with background