Hi all!
In my css file I set the input classes like this:
input[type='text']{
background-image: none;
background-color: #FFFFFF;
border-color: Black;
border-style: solid;
border-width: 1px;
}
input[type='text']:focus{
outline: 1px solid #2277B6;
}
The effect is add a border to the textbox on focus.
This works ok in Firefox, but not in IE8.
If i copy the html source of the produced page into an html file and open it with IE, the effect works too.
Any ideas??
Thanks!