Currently, I am attempting to center an image that is 1920px wide within the browser window. The challenge lies in not having it fit entirely within the window, so using width:100% will not achieve the desired effect. Furthermore, this needs to be accomplished with inline html. I have experimented with several techniques such as vertical-align, text-align, margin-left/right:auto, position, and overflow but have yet to find success. Perhaps my approach is flawed? Below is my most recent test code. Despite searching for similar questions without any luck, if there exists a solution already available, please do inform me.
<div>
<a title="TITLE" href="{{store direct_url=bras.html}}" target="_self">
<img style="vertical-align: middle;" title="TITLE" src="/IMAGE/PATH/HERE/MY-IMAGE.jpg" alt="ALT" />
</a>
</div>