HTML CSS examples for CSS Animatable Property:border-right
Only the border-right-width, and border-right-color properties are animatable in CSS among all the individual border-right properties.
The border-style property is not animatable.
-webkit- prefix is for Chrome, Safari, Opera.
-moz- prefix is for Firefox.
<!DOCTYPE html> <html lang="en"> <head> <title>Example of CSS border-right Property Animation</title> <style type="text/css"> .animated {<!-- www . j a va 2 s .c om--> width: 300px; padding: 40px 0; font: bold 50px sans-serif; text-align: center; background: #EEEEEE; border: 2px solid red; -webkit-animation: test 4s infinite; animation: test 4s infinite; } @-webkit-keyframes test { 50% {border-right: 20px solid indigo;} } @keyframes test { 50% {border-right: 20px solid indigo;} } </style> </head> <body> <p> </p> <div class="animated"> Box </div> </body> </html>