Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - Control text wrapping around boxes

 
Thread Tools Search this Thread
Old 01-18-2005, 07:35 AM   #1
Default Control text wrapping around boxes


I have seen many CMS packages wrap text around a box such as the one
at http://www.armchairdictator.com/index.php?art/id:5

but the text is always far too close to the box on the page. How does
one create padding around boxes like this one? I think that with
images you can add a padding parameter (or maybe not) to space text a
distance away from crowding the graphic. Thank you.




Marc
  Reply With Quote
Old 01-18-2005, 09:04 AM   #2
Bernhard Sturm
 
Posts: n/a
Default Re: Control text wrapping around boxes

Marc wrote:
> I have seen many CMS packages wrap text around a box such as the one
> at http://www.armchairdictator.com/index.php?art/id:5
>
> but the text is always far too close to the box on the page. How does
> one create padding around boxes like this one? I think that with
> images you can add a padding parameter (or maybe not) to space text a
> distance away from crowding the graphic. Thank you.


you could add padding to your float box (as in the above case):

<div id="authorbox">
<img src="out/avatar/1_authoricon.png" alt="author" />
Text
</div>

div#authorbox {
float:left;
margin: 3px; /* 3px margin of the box to each side */
padding: 3px; /* 3px padding within the box to each side */
}
div#authorbox img {
margin:2px; /* margin of the image to the text on each side */
}

please refer to the box model specs fron the W3C:
http://www.w3.org/TR/REC-CSS2/box.html

HTH
bernhard

--
www.daszeichen.ch
remove nixspam to reply


----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump