I want to draw a horizontal line with image in the middle. I have referred to stack question , it works great for text but when i add image instead of text, it doesn't works for me. Here is the js fiddle
.footer_bottom {
width:100%;
text-align:center;
border-bottom: 2px solid #cec5ba;
line-height:0.1em;
margin:10px 0 20px;
}
.footer_bottom img {
padding:0 10px;
}
<div class="footer_bottom"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Google.png/250px-Google.png" alt="Artisan House"></div>
ANy help is really appreciated.