Is there a way to expand an image to fill the entire WIDTH
of the page?
I am currently using a div tag.
<div align="center">
<img class="s1" src="<%=image%>"/>
</div>
img.s1
{
display: block;
margin-left: auto;
margin-right: auto;
border-width: 0px 0px 0px 0px;
size: 100%;
}
Appreciate any help on this matter.