Is there a html code to make a box bigger?

Richard

New member
Hey,
I was wondering is there a code to make like a box bigger basically the box goes down the page and i need it to go sideways rather than down

if this is possible does anyone know the code
 
If your box is a div element, this is the code.

<div style="width: Xpx;">
content of box
</div>

You could also use "em" or "%" for different units instead of "px".
 
Back
Top