html – 隐藏在CSS边框形状后面的文本

前端之家收集整理的这篇文章主要介绍了html – 隐藏在CSS边框形状后面的文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试使用背景颜色创建一个围绕文本的h1样式.


    h1.skew {
        padding-left: 10px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        display: inline-block;
        border-right: 50px solid transparent;
        border-top: 50px solid #4c4c4c;
        height: 0;
        line-height: 50px;
    }
    <h1 class="skew">HELLO WORLD

https://jsfiddle.net/zo32q98n/

此时,文本显示在背景下方.如何使文本显示在棕色背景中?

最佳答案

由于边框高度为50px,因此您可以在内部插入相同数量的负边距:


h1.skew::before {
  content: '';
  display: block;
  margin-top: -50px;
}
body {
  background: #ddd;
}
h1.skew {
  padding-left: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  display: inline-block;
  border-right: 50px solid transparent;
  border-top: 50px solid #4c4c4c;
  height: 0;
  line-height: 50px;
}
h1.skew::before {
  content: '';
  display: block;
  margin-top: -50px;
}
<h1 class="skew">HELLO WORLD
原文链接:https://www.f2er.com/html/426934.html

猜你在找的HTML相关文章