bg, 960 , 640px - , 320px .
, bg , , 1024px . CSS:
.wrapper {
background:url("my image here") 0 0 repeat-y;
}
, col CSS:
col1 { background-color:#fff; }
col2 { background-color:#ccc; }
HTML:
<div class="wrapper">
<div class="content">
<div class="col1">
</div>
<div class="col2">
</div>
</div>
</div>
CSS:
.wrapper {
margin:0 auto;
width:100%;
}
.content {
float:left;
width:960px;
}
.col1 {
background: **your background goes here
float:left;
width:640px;
}
.col2 {
background: **your background goes here
float:left;
width:320px;
}
, bg , , 1024px .