20

如何在以下 CSS 内容属性中插入 Google Material Icon“chevron icon right”( https://design.google.com/icons/#ic_chevron_right ):

.bullet li a:before {
    content: "";
}
4

6 回答 6

52

2018年更新

谷歌删除了之前为 IE9 及更低版本显示的代码。要获取代码,请访问 GitHub 存储库中的代码点文件。

链接到 GitHub 存储库中的代码点:https ://github.com/google/material-design-icons/blob/master/font/MaterialIcons-Regular.codepoints


第 1 步:包括 Material Icons 样式表。

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

第2步 :

CSS 代码:

.bullet li a:before {
    font-family: "Material Icons";
    content: "\e5cc";
}

解释:该值e5cc是您看到的 V 形的代码。

在此处输入图像描述

于 2016-10-22T16:16:02.587 回答
12
::before {
    font-family: 'Material Icons';
    content: "\E87C";
}

::after {
    font-family: 'Material Icons';
    content: "face";
}

http://codepen.io/estelle/pen/MwvOjd

于 2018-09-05T03:26:19.093 回答
5

Try this.

.bullet li a:before {
    font-family: FontAwesome;
    content: "\f054";
}

You can refer here for content values

于 2016-10-22T15:58:06.227 回答
2

您可以将其用于 rtl 模式:

.bullet li a:before {content: '\E5CB';}
于 2017-07-17T14:18:11.910 回答
1

如果您已经包含了来自materialdesignicons.com的缩小 CSS,那么只需使用 Material Design Icons 字体系列:

::after {
    font-family: 'Material Design Icons';
    content: "\f054";
}

还有一个方便的备忘单

于 2019-07-17T11:53:23.477 回答
0

2021 年 6 月更新

Material Icons 的代码点位于 Google Fonts 网页的 Material Icons 部分。

第 1 步:包括 Material Icons 样式表。

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

第 2 步:CSS 代码。

::after {
    font-family: 'Material Icons';
    content: "/e5cc";
}

说明:该值e5cc是您在下一个链接和图像中看到的人字形代码。

https://fonts.google.com/icons?selected=Material+Icons&icon.query=chevron

如何获取人字形图标的内容代码

于 2021-06-29T17:25:08.617 回答