Page Widget How to - Set height and background color for hr








Question

We would like to know how to set height and background color for hr.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
hr {<!--   w w  w .j  av a 2  s . c o  m-->
  height: 1px;
  background-color: #000;
  border: 0 none;
}
</style>
</head>
<body>
  <hr />
</body>
</html>

The code above is rendered as follows: