Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Re: Splitting A Word?

by thraxil (Prior)
on Jul 07, 2001 at 01:35 UTC ( [id://94620]=note: print w/replies, xml ) Need Help??


in reply to Re: Splitting A Word?
in thread Splitting A Word?

no, usually the browser will expand the table to fit the text in it if there are really long words. that's the problem mpegman seems to be having. eg,

<table width="2" border="1"> <tr><td>looooooooooooooong</td></tr> </table>

gives you:

looooooooooooooong

certainly not 2 pixels wide.

if you're working on a more liquid layout, you could modify one of the regexps given to substitute in a <wbr /> tag instead of a space. that tells the browser that if it needs to wrap text, that's a good spot to do it in. but if it doesn't need to wrap the text, you won't end up with a space in the middle of the word.

anders pearson

Replies are listed 'Best First'.
Re: Re: Re: Splitting A Word?
by damian1301 (Curate) on Jul 07, 2001 at 08:00 UTC
    Oh really? Well, that is because it won't break the word for you. If you explicity state it's length (and restrict the use of <nobr>) then it will wrap on words. Eg.
    <table width="2" border="2"> <tr><td>yeah I am dave and blah blah blah blah blha</td></tr></table>
    which produces.
    yeah I am dave and blah blah blah blah blha


    $_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://94620]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-23 13:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found