css – 如何制作方角的东西?

前端之家收集整理的这篇文章主要介绍了css – 如何制作方角的东西?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
真的含糊不清的问题,我知道,但我不知道如何描述它们……基本上,我想要这些:

我正在谈论红色的角落里的东西.实现这一目标的最简单方法是什么?显然,你可以在这些形状中制作单独的div,但我觉得让它们处于你想要的位置,即使所有重新调整尺寸和东西都会很痛苦.这是唯一的方法吗?

解决方法

这是一种可能有用的方法.添加两个伪元素,一个具有顶部和底部边框,第二个具有特定颜色(白色)的左右边框,使得它们“白化”原始边框(在这种情况下为蓝色).

这种方法是纯CSS,不涉及额外的标记.

div {
  font-size: 4.00em;
  padding: 40px;
  border: 2px solid blue;
  display: inline-block;
  position: relative;
}
div:after {
  content: '';
  display: block;
  border-left: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  height: 50%;
  left: -2px;
  right: -2px;
  top: 25%;
  bottom: 25%;
}
div:before {
  content: '';
  display: block;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  position: absolute;
  height: 100%;
  left: 25%;
  right: 25%;
  top: -2px;
  bottom: -2px;
}
<div>Box Text</div>
原文链接:https://www.f2er.com/css/214667.html

猜你在找的CSS相关文章