Click to See Complete Forum and Search --> : Problems with styling


neenach2002
07-02-2004, 10:00 PM
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?

MstrBob
07-02-2004, 10:07 PM
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;
}