What is a CSS Pseudo-class :focus Selector?
input:focus {border: medium dotted red;}
<form action="example_input.php" method="post"> <p> Text: <input type="text" name="texttest" title="text input sample"> Password: <input type="password" name="passtest" size="10" maxlength="10" value="" title="password sample"> <input type="submit" value="Send"> </p> </form>
input:focus {border: medium dotted red;}
<form action="example_input.php" method="post"> <p> Text: <input type="text" name="texttest" title="text input sample" /> Password: <input type="password" name="passtest" size="10" maxlength="10" value="" title="password sample" /> <input type="submit" value="Send" /> </p> </form>