Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Animate CSS padding-left property
To implement animation on padding-left property with CSS, you can try to run the following code
Example
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 350px;
height: 150px;
outline: 3px solid orange;
animation: myanim 3s infinite;
}
@keyframes myanim {
50% {
padding-left: 20px;
}
}
</style>
</head>
<body>
<h1>CSS padding-left property</h1>
<div> </div>
</body>
</html>Advertisements