Problems with styling

liunx

Guest
INPUT {
font-size: 11px;
font-weight: normal;
color: #FFFFFF;
backgroundcolor: #2E1711;
border-color: #FFFFFF;
border-width: 1px;
border-style: solid;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}

For some reason, that doesn't apply the whole style. The border doesn't show up. What am I doing wrong?It works for me fine enough. Just make sure your container's background isn't white, because your border is white.


INPUT {
font-size: 11px;
font-weight: normal;
color: #FFFFFF;
background-color: #2E1711;
border:1px solid #FFFFFF;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}
 
Back
Top