Yes, there is a way: Using absolute positioning + always keep in mind the size of each
- ^^ this is not recommended
What I recommend is this:
- set the width of the page container layer ( div class="containerLayer" and in the class specify the width as follows:
Quote:
.containerLayer {
width: 800px; /* set the desired width*/
height: auto;
...
...
}
|
)
- use relative position for the controls inside and for spacing use the
margin or the
padding attribute.
- this way everything goes just fine.
Hope this ^^ make sense for you
