Issue
How can I insert the Google Material Icon "chevron icon right" (https://design.google.com/icons/#ic_chevron_right) in the following CSS content property:
.bullet li a:before {
content: "";
}
Solution
Update on 2018
Google removed the codes which were displayed earlier for IE9 and below. To get the codes visit the codepoints file in the GitHub repository.
Link to codepoints in GitHub repository: https://github.com/google/material-design-icons/blob/master/font/MaterialIcons-Regular.codepoints
Step 1: Include the Material Icons Stylesheet.
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Step 2 :
CSS Code:
.bullet li a:before {
font-family: "Material Icons";
content: "\e5cc";
}
Explanation: The value e5cc
is the code which you see for the chevron.
Answered By - Sarvap Praharanayuthan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.