HTML Element Style How to - Add bottom border to paragraph








Question

We would like to know how to add bottom border to paragraph.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
p {<!--   w w w.  j av a 2 s  .c  o  m-->
  width: 100%;
  border-bottom: 1px solid black;
}
</style>
</head>
<body>
  <p>Hello</p>
</body>
</html>

The code above is rendered as follows: