2

我在我的 div 底部添加一个图像边框,如下所示:

HTML:

<div class="view">
    <div class="shadow_overlay"></div>
</div>

CSS:

.view {
    text-align: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    width: 160px;
    height: 190px;
    border-image: linear-gradient(to right, rgb(139, 191, 64) 25%, rgb(230, 27, 33) 25%, rgb(230, 27, 33) 50%, rgb(124, 196, 236) 50%, rgb(124, 196, 236) 75%, rgb(254, 181, 17) 75%);
    border-image-slice: 1;
    border-image-width: 4px 0px 0px 0px;
}
.shadow_overlay {
    background: url('http://i.imgur.com/MrVzqyp.png') 0 0 no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-left:auto;
    margin-right:auto;
    width:160px;
    height:190px;
}

这行得通,但border-image实际上比我的div.

问题图:

在此处输入图像描述

我该如何解决这个问题?

演示在这里

4

1 回答 1

3

似乎浏览器在border-image使用时为边框分配了默认宽度(但另一侧的边框是不可见的,因为border-image-widthis 0px)。为避免边框看起来像溢出div,手动将所有其他边的边框宽度设置为 0px。

border-width: 4px 0px 0px 0px;

该行为在 Chrome(最高 v48.0.2535.0 dev-m)、IE (Edge)、Opera 和 Safari 中可见。边框图像不会超出div最新的 Firefox (v41.0.1) IE (v11),

.view {
  text-align: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  width: 160px;
  height: 190px;
  border-image: linear-gradient(to right, rgb(139, 191, 64) 25%, rgb(230, 27, 33) 25%, rgb(230, 27, 33) 50%, rgb(124, 196, 236) 50%, rgb(124, 196, 236) 75%, rgb(254, 181, 17) 75%);
  border-image-slice: 1;
  border-image-width: 4px 0px 0px 0px;
  border-width: 4px 0px 0px 0px;
}
.shadow_overlay {
  background: url('http://i.imgur.com/MrVzqyp.png') 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
  height: 190px;
}
<div class="view">
  <div class="shadow_overlay"></div>
</div>


在下面的代码片段中,您可以看到它看起来好像所有其他边都有一个 3px 边框。Web 或规范中都没有明确解释谁的行为是正确的(Chrome、Edge 或 FF、IE11)。

.view {
  text-align: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  width: 160px;
  height: 190px;
  border-image: linear-gradient(to right, rgb(139, 191, 64) 25%, rgb(230, 27, 33) 25%, rgb(230, 27, 33) 50%, rgb(124, 196, 236) 50%, rgb(124, 196, 236) 75%, rgb(254, 181, 17) 75%);
  border-image-slice: 1;
  border-image-width: 4px 0px 0px 0px;
  }
.view#two{
  border-width: 4px 3px 3px 3px;
}
.shadow_overlay {
  background: url('http://i.imgur.com/MrVzqyp.png') 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
  height: 190px;
}
<div class="view">
  <div class="shadow_overlay"></div>
</div>

<div class="view" id="two">
  <div class="shadow_overlay"></div>
</div>


W3C 规范还对边框图像属性进行了以下说明,但在 FF 和 IE11border-image中,仅border-width在提供和border-image-width避免时不显示。

border-image 属性不影响布局:框的布局、其内容和周围内容仅基于 'border-width' 和 'border-style' 属性。

因此,似乎 的行为border-image仍未标准化。我倾向于在 Chrome、Edge 中观察到的内容,因为 Microsoft 出于某种原因似乎已经改变了 IE11 的行为,因此必须有充分的理由。

于 2015-10-31T13:57:15.750 回答