HTML Element Style How to - Add underline to h1 with bottom border








Question

We would like to know how to add underline to h1 with bottom border.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1 {<!-- w w w .  j a  v a2s  . c om-->
  border-bottom: 8px solid #57c4d0;
  font-size: 24px;
  display: inline-block;
}

.title {
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
}
</style>
</head>
<body>
  <div class="title">
    <h1>Contacteer ons</h1>
  </div>
  <div class="title">
    <h1>Really really long title</h1>
  </div>
  <div class="title">
    <h1>short</h1>
  </div>
</body>
</html>

The code above is rendered as follows: