So, I'm making this site, and I've got divs and everything. But I want to make it so that the overflow automatically wraps back into the div. Can this be done with CSS, or should I take this to PHP, or Javascript?
Here's what I have:
Code:
div.center { position: absolute; left: 150px; top: 0px; overflow: hidden; width: 700px; height: 500px; border: 2px dashed; border-color: #000; }
This makes the text go off into the blue (ironically, my background is blue), and it won't be available to the user. So I want the text to wrap inside the div.
^_^ Thanks in advance.
|