首页htmlborderPage Widget - 如何用伪元素装饰边框

Page Widget - 如何用伪元素装饰边框

我们想知道如何用伪元素装饰边框。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h2 {
  line-height: 17px;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #00a7a8;
  position: relative;
}

h2:before {
  content: '\25bc';
  position: absolute;
  top: 100%;
  left: 5em;
  color: #00a7a8;
}
</style>
</head>
<body>
  <h2>The Header Is Here</h2>
</body>
</html>