Forum Moderators: not2easy
Is it possible to make text overflow to a second page? I currently have a long interview which I would like to run over a few pages. The containing div is a specific size and must not grow. I can separate the text and set the text size to a (e.g.) 15 pixel height so that the text stays inside the div, but on some where the main font is not available, a substitute is used which may be slightly larger than the default, this would cause the text to expand the div. Aaarrrgghh. I can't even explain it properly!
CSS can, however, make sure that the div's size doesn't change. By using the overflow property, you can either have any extra content disappear, or be accessible through a scrollbar on the div (it will only appear when necessary). The propertyis overflow and the values to use are hidden and scroll, respectively.
cEM