|
CSS:
<style>
body
{
text-align: center;
}
.container
{
text-align: left;
height:100%;
width:750px;
padding-bottom:80px;
margin: 0px auto 0px auto; /* top, right, bottom, left */
background-color:#C2C2F0;
border:#000000 1px dotted;
}
.block
{
height:80px;
width:150px;
margin:40px;
background-color:#FFFF33;
float:left;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
</style>
|