开发者社区 问答 正文

什么时候需要用到伪元素?

感觉伪元素没什么必要

展开
收起
a123456678 2016-03-26 11:35:36 1948 分享 版权
1 条回答
写回答
取消 提交回答
  • <!-- That's clean markup! -->
    <span class="text-box">
      See the square next to me?
    </span>
    /* We use a :before pseudo element to solve the design problem of placing a colored square in front of the text content */
    .text-box:before {
      content: "";
      display: inline-block;
      width: 1rem;
      height: 1rem;
      background-color: red;
    }
    2019-07-17 19:15:56
    赞同 展开评论
问答地址: