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

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -