首页htmllinePage Widget - 如何使用HR标签创建CSS虚线

Page Widget - 如何使用HR标签创建CSS虚线

我们想知道如何使用HR标签创建CSS虚线。

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