Try this.
<div class="centered_image">
<img src="flow_2.jpg" alt="leaflet"/>
</div>
With css like this:
div.centered_image {
width: 60%;
margin: 1em 19%;
}
div.centered_image img {
width: 100%;
}
(19% to avoid any rounding errors causing problems)
(From
stack exchange)