Advanced Examples
Adding custom list bullets
ul {
padding-left: 10px;
}
li {
list-style: none;
background-repeat: no-repeat;
background-size: 24px;
padding: 8px 0 8px 32px;
background-position-y: 10px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40' x='0px' y='0px'%3E%3Ctitle%3E04 Check%3C/title%3E%3Cg data-name='Check'%3E%3Cpath fill='%23748A4B' d='M15,18.16,26.4,6.72a1,1,0,0,1,1.42,0,1,1,0,0,1,0,1.41L15.67,20.28a1,1,0,0,1-.71.29,1,1,0,0,1-.7-.29L9.18,15.21a1,1,0,0,1,1.42-1.42Zm15.89-4.3a1,1,0,1,0-2,.28A12.82,12.82,0,0,1,29,16,13,13,0,1,1,21.57,4.25a1,1,0,0,0,.86-1.81A15,15,0,1,0,31,16,15.18,15.18,0,0,0,30.85,13.86Z'/%3E%3C/g%3E%3C/svg%3E");
}Comparison Chart
Here's a little example of how to use CSS to create a stylish comparison chart using the Value icons - horizontal. CSS code included in the comments of the video.
Last updated