-
[HTML] A container
Right then i would like know what control to use, i am trying to get the effect of what i would describe a picture box in VB6, I want to have html content within a container (so allowing a variable width) of which the container width will be limited to the width of its environment whilst allowing the content to flow out of sight, accessible via scroll bars :D
If you understood any of that, what should i use?
Greatly appreciated, ILMV
-
Re: [HTML] A container
You get the same effect with DIV or any other element with overflow : auto; – the scrollbars appear if you've limited the width or height some way (by giving a value).
HTML4 way would be to use IFRAME, which can load a separate page into it.