5

我有这个:

.striped-border {
    border: 8px solid transparent;
    border-image: url(../img/stripes.png) 9 round;
}

带有边框图像的内容

我想要的是:

在此处输入图像描述

是否可以仅对边框图像而不是内容应用不透明度?

4

2 回答 2

7

您可以使用pseudo-element创建边框,border-image然后设置opacity.

div {
  position: relative;
  margin: 50px;
  font-size: 25px;
  padding: 10px 25px;
  display: inline-block;
}
div:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-image: url('http://www.circlek.org/Libraries/2013_branding_design_elements/graphic_CKI_horizontal_stripesblue_RGB.sflb.ashx') 22 22 repeat;
  transform: translate(-5px, -5px);
  opacity: 0.4;
}
<div>Element</div>
<div>Element <br> lorem</div>

于 2017-07-13T15:56:40.427 回答
2

类似的东西怎么样:

.striped-border:after{
    content:"";
    position:absolute;
    top:0; bottom:0; left:0; right:0;
    border:8px solid rgba(256,256,256, 0.5);
}
于 2017-07-13T15:45:51.213 回答