CSS

굵어지는 테두리

CD2Y 2021. 7. 22.
반응형

See the Pen 굵어지는 테두리 by nilgi (@nilgi) on CodePen.

 

.bbox {
     animation: bbox 5s infinite;
}

@keyframes bbox {
     50% {
          border: 30px solid tomato;
          border-radius: 50px;
     }
}

반응형