Bad solution, however. (we'll get you thinking right, seb - it's just a
matter of time! 8)
A line break will ALWAYS break the line at that point, no matter how the
text is flowed within its container. This can lead to unexpected appearance
issues.
A MUCH better solution is to use CSS to modify the inherent margins on the
<p> tag, e.g.,
p.special { margin:2px; }
(adjust that value to suit)
<p class="special">This text will continue to flow to fill the width of the
line regardless of the container's width</p>
Then you retain the benefit of having freely flowing text content, AND in
having the line spacing you desire.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver MX
(If you *MUST* email me, don't LAUGH when you do so!)
==================
news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
ANSWERS
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"gordonspeirs" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
Thanks man!  |