A 200px square division implies:
HTML Code:
<div style="width:200px;height:200px;">whatever content</div>
or equivalent. With those strictures, the division will have only a few basic possible ways to react once the content becomes greater than its capacity to hold it. It can:
1 ) Overflow (visible) - this will display the content but place some of it beyond the edges of the division.
2) Overflow (hidden) - only that portion of the content that fits will be seen.
3) Overflow (scroll) - A scrollbar(s) appear(s) to allow the portion of the division that isn't visible within its configured dimensions to be scrolled into view.
There are variations on each and you can set these using the style attribute:
etc. However, you might prefer to leave one dimension, either the height or the width, unspecified. Then the division can expand in that dimension to accommodate additional content.
Bottom Line: 200px by 200px? - you can only fit so much stuff in there.
Bookmarks