

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 border-top-left-radius property
To implement animation on the border-top-left-radius property with CSS, you can try to run the following code
Example
<!DOCTYPE html> <html> <head> <style> table,th,td { border: 2px solid black; } #newTable { width: 500px; height: 300px; background: yellow; border: 15px solid yellow; animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 30% { background-color: orange; border-spacing: 50px; border-top-color: red; border-top-left-radius: 150px; } } </style> </head> <body> <h2>Performing Animation for border top left radius</h2> <table id = "newTable"> <tr> <th>Subject</th> <th>Student</th> <th>Marks</th> </tr> <tr> <td>Maths</td> <td>Amit</td> <td>98</td> </tr> <tr> <td>Science</td> <td>Sachin</td> <td>99</td> </tr> </table> </body> </html>
- Related Questions & Answers
- CSS border-top-left-radius property
- Animate CSS border-top property
- CSS border-top-right-radius property
- CSS border-bottom-left-radius property
- Animate border-top-width CSS property
- Animate CSS border-top-color property
- Animate border-left property with CSS
- Animate CSS border-left-color property
- Animate CSS border-left-width property
- CSS border-radius property
- Perform Animation on CSS border-top-right-radius property
- Perform Animation on CSS border-bottom-left-radius property
- Animate CSS border property
- CSS border-bottom-right-radius property
- Animate CSS border-spacing property
Advertisements