在选择器之前添加空白

这个问题在这里已经有了答案:

  • 使用CSS内容添加HTML实体9个答案

  • 是的,你可以像这样的content: "f16c 0a0";添加空格content: "f16c 0a0";

    的jsfiddle

    0a0是用于content属性的非0a0空间的十六进制代码。 更多信息

    希望能帮助到你 :)


    是的,使用a0它是  或不破坏的空间。

    .stackoverflow::before {
        font-family: 'FontAwesome';
        content: "f16ca0a0a0a0a0a0";
    }
    <html>
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
      <a class="stack-link stackoverflow" href="http://stackoverflow.com">StackOverflow</a>
    </html>
    链接地址: http://www.djcxy.com/p/15545.html

    上一篇: Add whitepaces with ::before selector

    下一篇: How do I put character &#8226 ::before an element?