I want to display text on the right side which is aligned perfectly in the code. How can I do it? I do not want to use position absolute.
.down {
margin-top: 5px;
border: 1px solid red;
}
.icontext {
display: inline-block;
margin-right: 8px;
}
This will vertically align the span tags with the img tags
.icontext {
vertical-align: middle;
margin-right: 8px;
}
.icon{
vertical-align: middle;
}
Example: http://jsfiddle.net/ykdnB/2/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With