I'm having a bit of trouble styling a button so that an optional image will appear to the right of the text. This button should style correctly whether the icon is present or not. This is the CSS I am using:
.myButton {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
background-color: #ABCDE5;
border-color: #A5C6DD;
border-width: 1px;
height: 30px;
padding: 5px 10px 5px 10px;
float: right;
margin-right: 30px;
font-family: AdelleSans-SemiBold;
text-decoration: none;
font-size: 16px;
color: #FFFFFF;
}
.myButton:hover {
-webkit-box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.25);
-moz-box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.25);
box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.25);
}
.myButton.disabled {
pointer-events: none;
cursor: default;
background-color: #ABCDE5;
border-color: #A5C6DD;
opacity: .4;
}
.myButton.icon span{
width: 20px;
margin-right: 15px;
padding-right:70%;
vertical-align: middle;
background: url(export.png) no-repeat 60px 2px;
}
Which is being called by a html tag as such:
<a class="myButton icon" href="#" ><span>Export</span></a>
I am probably missing something really small, or my implementation may be way off, but I can't seem to wrap my head around what is going wrong. Firefox renders this perfectly, while the button does not grow wider in Chrome
Appreciate any help, thanks
Please try adding width to class "myButton" for resolving the issue
Thanks