Flags with border on hover
Posted
by Alpan67
on Stack Overflow
See other posts from Stack Overflow
or by Alpan67
Published on 2010-05-30T14:15:38Z
Indexed on
2010/05/30
14:22 UTC
Read the original article
Hit count: 323
Hello I have 3 flags (Italian, german, english) with the purpose to change language for the whole site in future. How can I make a border on a hover effect that could alxo work with IE ?
this is the CCS
.miniflags {
float:right
margin : 5px 20px;
padding-right:10px;
}
and here the HTML
<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>
Thanx for help
Alex
© Stack Overflow or respective owner