Content Overlapping Div
I'm having issues with overlapping contents. When I try this code for the HTML the text within content_left overlaps the entire area i want it to contain. When I change height to a
Solution 1:
Seeing the full fiddle, the comments i can make are
- remove the
height:700px;
from the#wrapper
- add
overflow:hidden
on the#wrapper
- add
word-wrap: break-word;
on the.content_left
(this will enable word-breaking since your text is too long to fit in a single line..)
The result can bee seen at http://jsfiddle.net/gaby/L6acE/1/
Support for this feature can be seen at http://caniuse.com/#search=word-wrap
Solution 2:
its because there is no space in string(word) try
.content_left{overflow:hidden;}
and i dont think any valid string(word) as long as yours
Post a Comment for "Content Overlapping Div"