that’s what I got so far:
http://jsfiddle.net/cHKF4/3/
But I want to put small boxes (box1 and box2 inside late)
#late {
position: relative;
border-style: solid;
border-width: 3px;
border-color: #00fff3;
height: 200px;
width: 960px;
margin: 0 auto;
margin-top: 30px;
}
#box1 {
position: relative;
border-style: solid;
border-width: 1px;
border-color: #55fff3;
height: 100%;
width: 200px;
margin: 0 auto;
}
#box2 {
position: relative;
border-style: solid;
border-width: 3px;
border-color: #55fff3;
height: 100%;
width: 200px;
}
Thank you.
Is this what you’re trying to achieve (
box1andbox2side by side and centred insidelatewithlatecentred on the page) :