솔루션에 추가 :
ul li:before {
content: '✓';
}
Font Aswesome 과 같은 SVG 아이콘을 내용으로 사용할 수 있습니다 .
ul {
list-style: none;
padding-left: 0;
}
li {
position: relative;
padding-left: 1.5em;
}
li:before {
content: '';
position: absolute;
left: 0;
width: 1em;
height: 1em;
background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}
<ul>
<li>this is my text</li>
<li>this is my text</li>
<li>This is my text, it's pretty long so it needs to wrap. Note that wrapping preserves the indentation that bullets had!</li>
<li>this is my text</li>
<li>this is my text</li>
</ul>
참고 : 다른 답변의 래핑 문제를 해결하려면 다음을 수행하십시오.
- 우리는 각각의 왼쪽에 1.5m ems의 공간을 예약합니다
<li>
- 그런 다음 해당 공간 (
position: absolute; left: 0
) 의 시작 부분에 SVG를 배치합니다.
Font Awesome 검은 색 아이콘 이 더 있습니다.
이 CODEPEN 에서 색상을 추가하고 크기를 변경하는 방법을 확인하십시오.