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? Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/ 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? Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/#findComment-1161591 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? Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/#findComment-1161837 Share on other sites More sharing options...
ananaz Posted January 21, 2011 Author Share Posted January 21, 2011 Thank you, that solved it! Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/#findComment-1163097 Share on other sites More sharing options...
kfir91 Posted January 21, 2011 Share Posted January 21, 2011 how u solved? Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/#findComment-1163121 Share on other sites More sharing options...
raknjak Posted January 26, 2011 Share Posted January 26, 2011 => use white-space: normal; Link to comment https://forums.phpfreaks.com/topic/224864-css-change-row-when-full/#findComment-1165392 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.