“Как сделать пунктирный HR в CSS” Ответ

Как создать пунктирный HR

/* 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
}

Frail Flamingo

пунктирная Лин в CSS

hr {
  border:none;
  border-top:1px dashed #f00;
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
}
Brainy Booby

Как сделать пунктирный HR в CSS

/* hr {
  border:none;
  border-top:1px dotted #f00; 
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
} */
Hungry Hummingbird

Как сделать пунктирный HR в CSS

/*Here the syntax for border-style works clockwise therefore, the top has the value dotted
and the right has value assigned none and then comes the bottom and then finally the left*/

hr {
            border: 6px dotted;
            border-style: dotted none none none;
            height: 2px;
            width: 8%;
            color: grey;
            
            }
Siddevin

Ответы похожие на “Как сделать пунктирный HR в CSS”

Вопросы похожие на “Как сделать пунктирный HR в CSS”

Больше похожих ответов на “Как сделать пунктирный HR в CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования