마크업 언어/CSS

[CSS] style 에 변수선언 (inline css)

KIMJAVAN 2024. 4. 22. 19:46
728x90

html

<div className='suggest-img-wrapper' style={{'--n': index}} key={index}> </div>

 

 

css

.twoanswer-ai-section.active2 .suggest-img-wrapper{
    animation : cardMove 1s ease forwards;
    animation-delay: calc(var(--n) * 0.2s + 2s);
}