I'm trying to find a way to override an inline width on an img tag, using inline css.
- I do NOT have access to an external style sheet.
- I can't change the img tag with its inline CSS. I'm working with a template and it's populated later.
What I want is to place a container div around the image tag such that the max-height=180, and max-width=120. Is there some sort of CSS magic and or trickery that I can do this?
<div style="put something here to override the 320px below">
<img src="path/to/image" style="width:320px"> <!-- fixed tag -->
</div>