弯曲的<hr /> S形状

时间:2017-05-17 15:03:03

标签: php html css

我到处都在搜索,如何制作像这样的html / css resonsive S形虚线

enter image description here

所以,它一直是我生存的祸根。 我试图不惜一切代价避免使用SVG,虽然我也曾在SVG中搜索过如何做到这一点。  有人能帮助我吗?

1 个答案:

答案 0 :(得分:1)

hr.style-seven {
        height: 150px;
        border-style: solid;
        border-color: black;
        border-width: 1px 0 0 0;
        border-radius: 130px 0px 0px 0px;
	border-top: 1px dashed #8c8c8c;
	margin-right:130px;
}
hr.style-seven:before { 
        display: block;
        content: "";
        height: 150px;
        margin-top: -151px;
        border-style: solid;
        border-color: black;
        border-width: 0 0 1px 0;
        border-radius: 0px 0px 130px 0px;
	margin-left:130px;
	margin-right:-130px;
	border-bottom: 1px dashed #8c8c8c;
} 
.box{ height: 500px; margin-top:200px;}
<body class="box">
      <hr class="style-seven"/>
</body>

Demo

相关问题