css给文字设置背景色

html 复制代码
<!DOCTYPE html>
<html>

<head>
  <style>
    .father {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 5px;
    }

    .title {
      font-size: 12px;
      color: #405562;
      line-height: 20px;
      font-weight: 400;
      /* 配合父级的align-items: flex-start;子元素长度才不会是其父级的宽度 */
      position: relative;
    }

    .title span {
      /* 设置position为非static值,z-index才生效 */
      position: relative;
      z-index: 99;
    }

    .title div {
      width: 100%;
      /* 长方形的宽度 */
      height: 8px;
      /* 长方形的高度 */
      background: #F0F0F0;
      border-radius: 4px;
      position: absolute;
      left: 0px;
      top: 10px;
      z-index: 0;
    }

    .num {
      font-size: 15px;
      color: #333333;
      line-height: 20px;
      font-weight: 700;
    }
  </style>
</head>

<body>

  <div class="father">
    <div class="title">
      <span>文本文本文本文本文本文本</span>
      <div></div>
    </div>
    <span class="num">100</span>
  </div>

</body>

</html>

效果如下:

相关推荐
秦jh_11 分钟前
【Linux】多线程(概念,控制)
linux·运维·前端
蜗牛快跑21323 分钟前
面向对象编程 vs 函数式编程
前端·函数式编程·面向对象编程
Dread_lxy24 分钟前
vue 依赖注入(Provide、Inject )和混入(mixins)
前端·javascript·vue.js
涔溪1 小时前
Ecmascript(ES)标准
前端·elasticsearch·ecmascript
榴莲千丞1 小时前
第8章利用CSS制作导航菜单
前端·css
奔跑草-1 小时前
【前端】深入浅出 - TypeScript 的详细讲解
前端·javascript·react.js·typescript
羡与2 小时前
echarts-gl 3D柱状图配置
前端·javascript·echarts
guokanglun2 小时前
CSS样式实现3D效果
前端·css·3d
咔咔库奇2 小时前
ES6进阶知识一
前端·ecmascript·es6
帅帅哥的兜兜2 小时前
CSS:导航栏三角箭头
javascript·css3