ananaz Posted January 18, 2011 Share Posted January 18, 2011 Hello i have a problem this is my html: <p> Hello there guy or gild reading this note, the note is long because longcat is long</p> p has borders with a width set to 100 px now it looks like something like this: ____________________________ |Hello there guy or gild reading this|note, the note is long because longcat is long ____________________________| but i want it too look like this: ____________________________ |Hello there guy or gild reading this | |note, the note is long because | |longcat is long | ____________________________| in words i want the text to change to new row when the table is full. How do i do this? Quote Link to comment Share on other sites More sharing options...
Maq Posted January 18, 2011 Share Posted January 18, 2011 Can you post the relevant HTML and CSS? Quote Link to comment Share on other sites More sharing options...
raknjak Posted January 19, 2011 Share Posted January 19, 2011 Words wrap by default in p elements so this must be some kind of inherited behavior? => use white-space: normal; if you need to override some behavior I'd advise you te review all styling to find out what is causing the nowrap. Did you define a Doctype? Quote Link to comment Share on other sites More sharing options...
ananaz Posted January 21, 2011 Author Share Posted January 21, 2011 Thank you, that solved it! Quote Link to comment Share on other sites More sharing options...
kfir91 Posted January 21, 2011 Share Posted January 21, 2011 how u solved? Quote Link to comment Share on other sites More sharing options...
raknjak Posted January 26, 2011 Share Posted January 26, 2011 => use white-space: normal; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.