ol list-style decimal에서 점제거 (IE8+ 지원) // 적용 전 One Two // remove dot CSS ol { counter-reset: item; list-style-type: none; } li { display: block; } li:before { content: counter(item) " "; counter-increment: item } // 적용 후 One Two 더보기 이전 1 ··· 7 8 9 10 11 12 13 ··· 79 다음