如何在 CSS 的菱形内创建标题?

How would I create a title inside a diamond shape, with CSS?

我想创建一个样式处理,类似于:

这样的东西如何工作?

使用 CSS 变换:

您可以使用两个伪元素和 CSS 旋转变换来创建菱形,如下面的代码片段所示。这将使文本不受转换的影响,因此定位它会相对容易。

rotateZ(45deg) 生成边长相等的菱形,而额外的 rotateX(45deg) 负责拉伸外观,使边看起来不等长。

文本定位比较简单,只需要居中对齐,然后设置line-height与容器的height一致即可。请注意,这种垂直居中的方法仅适用于文本位于单行中的情况。如果它可以跨越多行,那么它应该放在一个额外的元素中,并且 translateY(-50%) 转换应该用于垂直居中。

.diamond {
  position: relative;
  height: 200px;
  width: 200px;
  line-height: 200px;
  text-align: center;
  margin: 10px 40px;
}
.diamond:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform: rotateX(45deg) rotateZ(45deg);
  box-shadow: 0px 0px 12px gray;
}
.diamond:after {
  position: absolute;
  top: 10px;
  left: 10px;
  content: '';
  height: calc(100% - 22px);  /* -22px is 2 * 10px gap on either side - 2px border on either side */
  width: calc(100% - 22px);  /* -22px is 2 * 10px gap on either side - 2px border on either side */
  border: 1px solid orange;
  transform: rotateX(45deg) rotateZ(45deg);
}
<div class='diamond'>
  Text Here
</div>


使用 SVG:

也可以使用 SVG path 元素代替 CSS 变换创建相同的形状。以下代码段中提供了示例。

.diamond {
  position: relative;
  height: 200px;
  width: 300px;
  line-height: 200px;
  text-align: center;
}
.diamond svg {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
path.outer {
  fill: white;
  stroke: transparent;
  -webkit-filter: url(#dropshadow);
  filter: url(#dropshadow);
}
path.inner {
  fill: transparent;
  stroke: orange;
}
<div class='diamond'>
  <svg viewBox='0 0 100 100' preserveAspectRatio='none'>
    <filter id="dropshadow" height="125%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="1" />
      <feOffset dx="0" dy="0" result="offsetblur" />
      <feMerge>
        <feMergeNode/>
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
    <path d='M2,50 50,2 98,50 50,98z' class='outer' />
    <path d='M8,50 50,8 92,50 50,92z' class='inner' />
  </svg>
  Text Here
</div>

<!-- Filter Code Adopted from  -->

钻石必须有不同的宽度和高度吗?否则你可以用伪元素变换一个正方形。

body {
  text-align: center;
  padding-top: 30px;
}
.diamond {
  width: 100px;
  height: 100px;
  position: relative;
  margin-top: 25px;
  display: inline-block;
}
.diamond:before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transform: rotate(45deg);
  -moz-transition: border-color 0.3s;
  transform: rotate(45deg);
  box-shadow: 0px 0px 21px -2px rgba(0, 0, 0, 0.25);
}
.diamond-inner {
  width: 80px;
  height: 80px;
  position: relative;
  margin-top: 25px;
  display: inline-block;
}
.diamond-inner:before {
  position: absolute;
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  left: 0;
  top: -15px;
  right: 0;
  bottom: 0;
  border: 1px solid #9C9819;
  -webkit-transform: rotate(45deg);
  -webkit-transition: border-color 0.3s;
  -moz-transform: rotate(45deg);
  -moz-transition: border-color 0.3s;
  transform: rotate(45deg);
}
<div class="diamond">
  <div class="diamond-inner">
    Test
  </div>
</div>

另见:JSFiddle