使用HTML& amp;在自定义形状内绘制虚线边框。 CSS

时间:2017-12-21 10:21:57

标签: html5 css3

我必须在HTML中编码形状(图像下方)

enter image description here

以下是我到目前为止所尝试的代码:



body {
  font: 13px Verdana;
}

h3 {
  height: 100px;
  background: #72bbab;
  border-radius: 50px 10px 10px 50px;
  display: flex;
  margin-top: 50px;
  position: relative;
  line-height: 100px;
  color: #ffffff;
  font-size: 13px;
  font-weight: normal;
}

h3 i {
  width: 130px;
  height: 130px;
  transform: translateY(-15px);
  background: #71bbab;
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
}

h3:before {
  content: "";
  position: absolute;
  border: 1px dashed #fff;
  top: 5px;
  bottom: 5px;
  left: 20px;
  right: 2px;
  border-radius: 10px;
}

h3 i:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px dashed #fff;
  border-radius: 50%;
}

<h3><i></i>Text</h3>
&#13;
&#13;
&#13;

现在问题是我无法从右侧删除圆圈的虚线边框。我尝试了border-top:0border-right:0,但没有成功。

提前致谢

  

注意:不要使用任何形象之王

4 个答案:

答案 0 :(得分:2)

看看这是否有帮助。

https://jsfiddle.net/induprakash/8ofLjqxm/

我在矩形边框上添加了更高的z-index。

body {
  font: 13px Verdana;
}

h3 {
  height: 100px;
  background: #72bbab;
  border-radius: 50px 10px 10px 50px;
  display: flex;
  margin-top: 50px;
  position: relative;
  line-height: 100px;
  color: #ffffff;
  font-size: 13px;
  font-weight: normal;
}

h3 i {
  width: 130px;
  height: 130px;
  transform: translateY(-15px);
  background: #71bbab;
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
}

h3:before {
  content: "";
    position: absolute;
    border: 1px dashed #fff;
    top: 5px;
    bottom: 5px;
    left: 105px;
    z-index: 10;
    right: 2px;
    border-radius: 0px;
    border-left: 0;
}

h3 i:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px dashed #fff;
  border-radius: 50%;
 border-right : 1px solid #72bbab;
}

答案 1 :(得分:2)

尝试这个,按照您的图像运行。我尝试过一种简单而不同的方法。

JSFiddle Link - https://jsfiddle.net/deepak104080/uwx873x1/

.circle {
  width:130px;
  height:130px;
  border-radius:65px;
  position:absolute;
  z-index:100;
  background:#71bbab;
  margin:0px;
  padding:0px;
}
.innercircle {
  width:110px;
  height:110px;
  border-radius:55px;
  position:absolute;
  top:9px;
  left:9px;
  z-index:100;
  background:#71bbab;
  border: 1px dashed #fff;
}

.tab {
  height: 100px;
  position:absolute;
  margin-top:15px;
  margin-left:105px;
  z-index:1000;
  width:350px;
  background:#71bbab;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
}
.innertab {
  height: 78px;
  position:absolute;
  margin-top:10px;
  margin-left:0px;
  z-index:1000;
  width:340px;
  background:#71bbab;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  border-right: 1px dashed #fff;
}
<div>
<div class="circle">
  <div class="innercircle">
  
  </div>
</div>

<div class="tab">
  <div class="innertab">

</div>
</div>
</div>

答案 2 :(得分:2)

如果您需要通过保持同一HTML mark-up来获得输出,那么您必须使用多个pseudo selectorsCSS calc() function来计算h2 tag width以及许多此类properties使用CSS获取输出。

您甚至使用positionz-index来隐藏h2 tag的圆形边框背面。使用保证金,你可以安排剩余的,所以在一个点整个图连接。

&#13;
&#13;
body {
  font: 13px Verdana;
}

h3{  
  background:#72bbab;
  width:calc(100% - 95px);
  height:85px;
  margin-left:95px;
  margin-top:21px;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  padding-left:20px;
  box-sizing:border-box;
  color:#fff;
}
h3 i{
  width:120px;
  height:120px;
  background:#72bbab;
  border-radius:50%;
  display:inline-block;
  top:2px;
  left:2px;
  position:absolute;
  z-index:-1;
  overflow:hidden;
}
h3 i:before{
  content:"";
  width:100px;
  height:100px;
  border:2px dashed #fff;
  position:absolute;
  top:8px;
  left:8px;
  border-radius:50%;
}
h3:before{
  content:"";
  width:calc(100% - 120px);
  height:65px;
  border:2px dashed #fff;
  position:absolute;
  right:15px;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
}
h3:after{
  content:"";
  width:3px;
  height:68px;
  background:#72bbab;
  position:absolute;
  top:28px;
  margin-left:-61px;
}
&#13;
<h3><i></i>Text</h3>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

::after元素使用h3伪。

h3:after {
  z-index: 9999;
  position:absolute;
  max-width: 100%;
  width: 100px;
  height: 87px;
  background: #71bbab;
  content: '';
  left: 35px;
  margin-top: 6px;
}

https://jsfiddle.net/apyupfwo/