The layout I want to achieve is a textarea (about 80% width), with a column of buttons next to it. The two elements are also contained within a DIV, which needs to be displayed around them.
Code:
+-----------------------------------------+
| +------------------------------+ +----+ |
| | Textarea | +====+ |
| | | +====+ |
| +------------------------------+ +----+ |
+-----------------------------------------+
I also want the container to be 100% in height and width (with a 1% margin), and the textarea 100% of the height of the container (again, with a 1% margin).
I have tried floating the textarea left, and nesting the buttons in a DIV which I also float left, but the container is only a few pixels high at the top of the page, rather than surrounding them. The textarea also isn't 100% height, it's just the default height.
Any help or ideas would be appreciated.