Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Unhappy <input> Border Colour Change

    Ok so i've got this script:
    HTML Code:
    <html>
    <head>
    <style type="text/css">
    input:active {
    background-color: white;
    border: 1px solid #66FF00;
    } 
    
    input{
    background-color: white;
    border: 1px solid black;
    } 
    </style>
    </head>
    
    <body>
    <input name="hello" type="text">
    </body>
    
    </html>
    And it's just a quickie to test it, but when you click on the text area i want the border to stay green while it is selected, because atm it's only green when you click on it.

    Please help.

    Thanks,
    Ver.

    EDIT: Test it here: http://www.w3schools.com/css/tryit.a...=trycss_border
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  2. #2
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    HTML Code:
    <html>
    <head>
    <style type="text/css">
    input:focus {
    background-color: white;
    border: 1px solid #66FF00;
    } 
    
    input{
    background-color: white;
    border: 1px solid black;
    } 
    </style>
    </head>
    
    <body>
    <input name="hello" type="text">
    </body>
    
    </html>

  3. #3
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    Ahh, thanks lol i tried onFocus and everything i could think of! +REP
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  4. #4
    Join Date
    May 2007
    Location
    Nebo, NC, USA
    Posts
    2,517
    Tokens
    0

    Latest Awards:

    Default

    onfocus="this.style.border='1px solid green';" Or something like that :s

Posting Permissions

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