This is my current setup -
css
#exportButton {
float: left;
background-color: Green;
height: 32px;
margin-left: 3%;
border-radius: 5px;
margin-right: 1%;
padding: 0px;
}
#exportButton img {
height: 28px;
padding: 3px;
vertical-align: middle;
}
#exportLink {
font-size: 16px;
text-decoration:underline;
color: white;
padding: 3px;
}
HTML
<body style="background-color:#E6E6FA">
<span id="exportButton">
<a id="exportLink" >HTML</a>
<img src='http://s26.postimg.org/qpk50nhzp/icn_export.png' height="20px;">
</span>
I need to remove whitespace between Export and the actual picture using CSS..How can I do that?
I tried various options of removing padding/margin but nothing works..