|
Posted by Steve Pugh on 12/03/57 11:28
talthen.z-serwera.o2@nospam.pl wrote:
> How can I manage to make 2 boxes in CSS-
> one with width=200px and second's width=(100%-200px). Such thing can be
> easily done using frames and tables, so it must be possible using CSS too!
> Why do I need it? Because I have a page with menu on the left (it's the
> first box) and a box with text on the right (it should have width=100%-200px
> to look good).
Amongst other methods:
..box1 { float: left; width: 200px;}
..box2 { margin-left: 200px;}
Steve
Navigation:
[Reply to this message]
|