📜  css 偏移边框 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:54.896000             🧑  作者: Mango

代码示例1
* {
  box-sizing: border-box;
}

.container {
  height: 200px;
  width: 200px;
  position: relative;
  background-color: red;
  margin: 20px;
}

.inner {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid black;
  top: -10px;
  left: -10px;
  z-index: 10;
}