不同的Css3边框样式

时间:2016-09-07 11:29:36

标签: css3

我想在我的内容标题中添加边框样式 enter image description here

我可以使用css3制作吗?如果有人知道如何做到这一点,请帮助我。

1 个答案:

答案 0 :(得分:1)

这是一个非常"硬编码"解决方案,但我得到了一些工作。

您必须将隐藏左右边框的mainDiv设置为与网页上的正文颜色相同。



body {
  background-color: #fff;
}

.mainDiv {
  width: 500px;
  height: 50px;
  border: 1px solid #CCAC00;
  position: relative;
  text-align: center;
  line-height: 3em;
}

.mainDiv:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 35px;
  top: 5px;
  left: -1px;
  border: 1px solid #fff;
}

.mainDiv:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 35px;
  top: 5px;
  left: 31.2em;
  border: 1px solid #fff;
}

<div class="mainDiv">Lorem ipsum dolor sit amet</div>
&#13;
&#13;
&#13;

JSFiddle如果您想根据自己的喜好进行编辑。