Search code examples
htmlcsstextboxonfocus

asp:TextBox; is there an "OnFocus" or CSS equivalent


What I would like to do is essentially:

/*psuedo css code*/
input:textbox:active
{
    border: 1px solid blue;
}

Kind of like how there is a:active but do that for a textbox. I know I can use Javascript for it, but for support reasons since I don't know who here knows JavaScript, I'm trying to keep it out. Thanks.

I'd also want an inactive to take away the border. Thanks.


Solution

  • Say your text box has id TextBox, you can use #TextBox:focus { border: 1px solid blue; }