I have used img
tag inside span
tag. I have made the span tag's display as inline-block and given it a background color. How can I center the image inside the span tag ?
<span class='plus' id='plus_block_1'> <img src='images/plus.png' /> </span>
CSS:
.plus {
display: inline-block;
background-color: #e1e1e1;
height: 40px;
}