HTML Form How to - Remove default focus from textbox








Question

We would like to know how to remove default focus from textbox.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#element:focus {<!--from  w w  w  . j  a va 2  s.  c om-->
  border: 1px solid red;
}
</style>
</head>
<body>
  <input id="element" type="text" />
</body>
</html>

The code above is rendered as follows: