HTML Element Style How to - Change color of an hr element








Question

We would like to know how to change color of an hr element.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
hr {<!--from   w  w  w  . ja va2 s .  c om-->
  color: #f00;
  background-color: #f00;
  border: 1px solid #f00;
}
</style>
</head>
<body>
  <hr />
</body>
</html>

The code above is rendered as follows: