QUOTE
i use 2 div's for the page layout. One for navigation and one for the contents.
html Code:
Original - html Code:
But now the b's wont stay within their div-element. I want lines that doesnt fit on one line within the divto wrap to the next line.
How can i do this?
Thanks,kvarnerexpress
html Code:
Original - html Code:
CODE
<div width="10%" style="position: absolute; left: 2%;"> bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb </div> <div width="86%" style="position: absolute; left: 14%;"> bbbb </div>
But now the b's wont stay within their div-element. I want lines that doesnt fit on one line within the divto wrap to the next line.
How can i do this?
Thanks,kvarnerexpress
all you need is:
CODE
<div width="10%" style="position: absolute; left: 2%; word-wrap:break-word;"> bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb </div> <div width="86%" style="position: absolute; left: 14%;word-wrap:break-word;"> bbbb </div>
that will fix your problem i hope let me know

