E031 - alex1221/bootlint-customization GitHub Wiki

E031

字体图标类只能用于不包含文本内容且没有子元素的元素。.

字体图标类只适用于不包含文本内容且没有子元素的元素. 也就是说 .glyphicon 元素必须是完全空的.

错误的:

<span class="glyphicon glyphicon-heart"><a href="#love">I love this</a></span>

正确的:

<span class="glyphicon glyphicon-heart"></span> <a href="#love">I love this</a>
⚠️ **GitHub.com Fallback** ⚠️