html - Vertical centering of a SVG img within a Div using CSS -
inside div have img tag refers svg file. center image vertically , horizontally in div. target ie 9/10 , ff. i've tried various suggestions various css sites nothing seems give me expected vertical spacing/centering. svg file have size changed via jscript centering has "dynamic".
here latest css:
.bigbox { border: 1px solid #808080; background-color: #ffffff; display: table; width: 300px; height: 100px; } img { width: 95%; vertical-align: middle; text-align: center; display: table-cell; } the html:
<div class="bigbox"> <img src="logoo2.svg"/> </div>
Comments
Post a Comment