i have this .css file, it work just fine in firefox, but in IE it don't work, like in the input tags i've set the background using background:#fff0ee; but nothing happens in ie ...
Code: Select all
fieldset {
border:solid 2px #DEDEDE;
margin-left:100px;
margin-top:15px;
width:450px;
height:375px;
}
fieldset ul, fieldset li {
border:0;
margin:0;
padding:0;
list-style:none;
}
fieldset li {
clear:both;
list-style:none;
padding:10px;
}
fieldset input {
font-size:0.8em;
padding:4px;
float:left;
border:1px #888 solid;
}
fieldset select {
font-size:0.8em;
padding:4px;
float:left;
border:1px #888 solid;
}
fieldset textarea {
font-size:0.8em;
padding:4px;
float:left;
border:1px #888 solid;
}
fieldset input:focus {
background:#fff0ee;
}
fieldset select:focus {
background:#fff0ee;
}
fieldset textarea:focus {
background:#fff0ee;
}
fieldset label {
width:140px;
float:left;
}