SitePoint Sponsor

User Tag List

Results 1 to 3 of 3

Thread: text box border - whats going wrong?

  1. #1
    SitePoint Guru coiL's Avatar
    Join Date
    Sep 2001
    Location
    QLD, Australia
    Posts
    666
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    text box border - whats going wrong?

    Hi,

    I'm having trouble setting the css for form text boxes. I don't know if i'm doingsomething worng, or it's just not possible, but it seems that my border colour will only match that of the font colour (color: )

    here's what I've got:
    Code:
    input.login {background-color:#EFEFEF;
    	color: #666666;
    	font-size: 12px;
    	border-color: #CCCCCC;
       border: 1px solid;}
    with this CSS, the border displays as #666666

    Code:
    input.login {background-color:#EFEFEF;
    	color: #CCCCCC;
    	font-size: 12px;
    	border-color: #CCCCCC;
       border: 1px solid;}
    with this code the border displays as #CCCCCC, which is no good beacuse then you can't see the text your entering.

    This happens in IE and NS
    coiL
    "cradled in the learning curve"

  2. #2
    The CSS Clinic is open silver trophybronze trophy
    SitePoint Award Recipient Paul O'B's Avatar
    Join Date
    Jan 2003
    Location
    Hampshire UK
    Posts
    37,749
    Mentioned
    99 Post(s)
    Tagged
    3 Thread(s)
    Hi,

    I think you need to put the border color statement after the border statement not before it as in your example.

    Or in shorthand as follows:

    Code:
    input.login {background-color:#EFEFEF;
     color: #666666;
     font-size: 12px;
     border: 1px solid #CCCCCC;
       }
    Hope this helps.

    Paul

  3. #3
    SitePoint Guru coiL's Avatar
    Join Date
    Sep 2001
    Location
    QLD, Australia
    Posts
    666
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, putting the border color after the border width fixed it. I never realised that It mattered what order you put them in. I guess it's logical though.

    thanks
    coiL
    "cradled in the learning curve"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •