Page Widget How to - Create CSS Dashed Line using HR Tag








Question

We would like to know how to create CSS Dashed Line using HR Tag.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.dash {<!--from   www .j a  v  a  2s.  c  o m-->
  border: 0 none;
  border-top: 2px dashed #322f32;
  background: none;
  height: 0;
}
</style>
</head>
<body>
  <hr class="dash" />
</body>
</html>

The code above is rendered as follows: