偏移背景颜色与css边界外?

时间:2017-11-08 12:06:40

标签: html css wordpress

我有一个响应式容器(带有视觉作曲家的Wordpress),背景颜色和边框。如果我想要背景稍微容器外面。 (如偏移打印错误)如何实现此目的。我已经涉足背景位置了。但是无法让它在WP中运行并且似乎没有用于负面?

Background and border offset

1 个答案:

答案 0 :(得分:1)

您可以将border替换为outline,并使用负outline-offset值。

*Note that this is not supported by Internet Explorer



div {
  background: black;
  outline: 5px solid yellow;
  outline-offset: -10px;
  width: 300px;
  height: 300px;
}

<div></div>
&#13;
&#13;
&#13;