Hey there! I've got myself 3 flags (Italian, German, English) in order to switch the language for my entire website in the future. How can I create a border hover effect that will also work with Internet Explorer?
Here is the CSS code:
.miniflags {
float: right;
margin: 5px 20px;
padding-right: 10px;
}
And here is the HTML code:
<div id="bandiere">
<a><img src="ita.png" class="miniflags" /></a>
<a><img src="ger.png" class="miniflags" /></a>
<a><img src="eng.png" class="miniflags" /></a>
</div>
Thanks for your assistance!
Alex