首页htmlh1_6HTML Element Style - 如何添加下划线到带底部边框的h1

HTML Element Style - 如何添加下划线到带底部边框的h1

我们想知道如何添加下划线到带底部边框的h1。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1 {
  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>