我正在尝试使用Font Awesome 5方形图标: https://fontawesome.com/icons/square?style=regular
我想使用“常规”版本,这只是方形轮廓,但无论我做什么,它总是呈现为“固体”版本。根据我的阅读,常规假设是默认的,并使其固定使用900的字体权重。但是,这里的默认似乎是坚实的,我已经尝试了几个不同的字体权重,它没有不做任何改变。
以下是我所说的。注释掉的字体权重是我尝试过的所有不同的字体,但它们并没有什么区别......
label:before
{
content: "\f0c8";
font-family: FontAwesome;
color: #ccc;
margin-right: 10px;
font-size: 1.5em;
/*font-weight: 100;*/
/*font-weight: 400;*/
/*font-weight: 900;*/
/*font-weight: normal;*/
/*font-weight: bold;*/
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<div>
<label>Label Text</label>
</div>