using css to position links long bottom
using css to position links long bottom
Out of context: Reply #5
- Started
- Last post
- 8 Responses
- ETM0
I can think of a couple ways. Maybe create a container for your image with your desired max-width. Then put your image in the div with a max-width of 100% for the image. It will scale proportionally with the container. That way you control that it doesn't get too large, but also down scales.
<div style="max-width: 600px" >
<img src="yourimage.jpg" style="max-width:100%;" />
</div>- The white space will be determined with your margins.ETM