首页htmllinePage Widget - 如何设置高度和背景颜色为hr

Page Widget - 如何设置高度和背景颜色为hr

我们想知道如何设置高度和背景颜色为hr。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
hr {
  height: 1px;
  background-color: #000;
  border: 0 none;
}
</style>
</head>
<body>
  <hr />
</body>
</html>