Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS 카운터 증분 속성


CSS로 카운터 값을 증가시키려면 counter-increme 아니 재산.

다음 코드를 실행하여 counter-implement를 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
            counter-reset: section;
         }
         h2::before {
            counter-increment: section;
            content: "Fruit " counter(section) " - ";
         }
      </style>
   </head>
   <body>
      <h1>Fruits</h1>
      <h2>Mango</h2>
      <h2>Kiwi</h2>
   </body>
</html>