:focus
In this chapter you will learn:
Description
The :focus
selects elements with focus.
Example
<!DOCTYPE HTML> <!--from jav a 2s . c o m-->
<html>
<head>
<style type="text/css">
:focus{
border: thin black solid;
padding: 4px;
}
</style>
</head>
<body>
<form>
Name: <input type="text" name="name"/>
<p/>
City: <input type="text" name="city"/>
<p/>
<input type="submit"/>
</form>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
Home » HTML CSS Tutorial » CSS Selector Reference