wrap text around div
Page 1 of 1
wrap text around div
can any body give me the code for attached imagejust need to wrap text around div
please reply ASAP with full code
Attachments
-
wrap.jpg (12.08 KiB) Downloaded 620 times
Re: wrap text around div
Here is skeleton code you can use, just change the other styles and width of your divs as necessary -- Code: Select all
<style type="text/css">
.content_area1 {
float: left;
width: 40%;
}
.content_area2 {
float: left;
}
.footer {
clear: both;
}
</style>
<div class="header">
Header text
</div>
<div class="content_area1">
text1
</div>
<div class="content_area2">
text2
</div>
<div class="footer">
footer text
</div>
Page 1 of 1