<style> li { display: block; list-style-type: none; } li::after { content: " ♥"; } li:last-child::before { content: "Welcome to "; } li:last-child::after { content: " Homzzang.com ♥"; }</style> <ul> <li>홈짱닷컴</li> <li>Homzzang.com</li> <li>홈짱닷컴</li> </ul> 결과 보기
<style>
li { display: block; list-style-type: none; }
li::after { content: " ♥"; }
li:last-child::before { content: "Welcome to "; }
li:last-child::after { content: " Homzzang.com ♥"; }</style>
<ul>
<li>홈짱닷컴</li>
<li>Homzzang.com</li>
</ul>
결과 보기