📜  如何创建虚线小时 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:55.183000             🧑  作者: Mango

代码示例1
/* you can put this line in your .css Change the width, 
border etc and colour to your liking*/

hr {
  width: 10%;
  border: 10px dotted;
  border-style: none none dotted;
  color: grey
}