CSS를 사용하여 margin-top 속성에 애니메이션을 적용하려면 다음 코드를 실행해 보세요.
Live Demo
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; animation: myanim 4s infinite; color: white; } @keyframes myanim { 30% { margin-top: 30px; } } </style> </head> <body> <h2>Heading One</h2> <div> This is demo text. </div> </body> </html>
위 내용은 CSS 여백 상단에서 애니메이션 수행의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!