I'm attempting to include a subtle border around an icon.
The issue I am facing is that the image is positioned at the top of the bordered area, whereas I want it centered. Here's how it currently appears:
This is my current border CSS style:
div.Icon{
float:left;
border:1px #ccc solid;
padding:3px;
height:80px;
width:110px;
}
div.Icon img{
text-align:center;
}