iMersky
Account Closed
- Impact
- 0
I'm coding a layout and I ran into a little trouble hopefully someone could help me out.
Alright now what I'm trying to do is get the div client to stack under the div latest which is to the right of the example div.
The code I used aligns the div example and div latest perfectly but I cant get the div client to show up at all.
Code:
#design {
background: transparent;
width: 1059px;
}
#example {
display:block;
position: absolute;
background: transparent url(images/example.png);
height: 217px;
width: 589px;
}
#latest {
float: right;
background: transparent url(images/latest.png) no-repeat;
height: 28px;
width: 470px;
padding-top: 10px;
}
.latesttext {
font: 11px Tahoma, Geneva, sans-serif;
color: #4e4e4e;
padding-left: 215px;
}
#client {
float: right;
background: transparent url(images/client.png) no-repeat;
height: 46px;
width: 470px;
margin-top: 40px;
}
HTML:
<div id="design">
<div id="example">
</div>
<div id="latest">
<span class="latesttext">LATEST PROJECT 5.22.09</span>
</div>
<div id="client">
</div>
</div>
Alright now what I'm trying to do is get the div client to stack under the div latest which is to the right of the example div.
The code I used aligns the div example and div latest perfectly but I cant get the div client to show up at all.





