HTML:

  <span class="info" data-title="详情"></span>

css(sass):

 .info {
        }
        &:hover::after {
          content: attr(data-title);
          display: inline-block;
          width: 70px;
          height: 22px;
          border: 1px solid #0088d8;
          font-size: 14px;
          font-family: FZLanTingHeiS-R-GB;
          font-weight: 400;
          color: #00d2ff;
          margin-top: 30px;
          line-height: 22px;
          text-align: center;
          margin-left: -20px;
        }
      }

要注意data-title这个是和after伪类中的content的attr属性的名字对应上的

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2022-12-23
  • 2022-01-04
  • 2022-12-23
  • 2022-01-04
  • 2021-11-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案