02-18-2008, 02:27 AM
|
#2 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Location: Brazil
Posts: 77
Thanks: 14
|
You can set the size of stuff using percentage instead of an absolute value.
Using CSS:
Code:
.somestyle {
width: 100%;
}
Directly in the element:
Code:
<div width="100%">content</div>
|
|
|