我要删除像这样的边框的角。

html - 如何从 Angular 落删除边框的某些部分?-LMLPHP

最佳答案

您可以使用::before::after伪元素覆盖(并因此“隐藏”)边框的某些部分:



.bordery {
  border: 1px solid teal;
  padding: 20px;
  position: relative;
}
.bordery::after,
.bordery::before {
  background-color: white;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  width: 10px;
}
.bordery::after {
  bottom: -1px;
  right: -1px;
}
.bordery::before {
  top: -1px;
  left: -1px;
}

<div class="bordery">This is just some sample content.</div>

10-06 06:52