Blink Border image CSS3

Blink Border image CSS3

by Asif Sharif Shahid

HTML

<img class="border0"...

CSS

@-webkit-keyframes blink { 50% { border-color: #ff0000; }  }
img{ 
	border: 4px solid  ;
	position: fixed ;
	top: 10px ;
    left: 10px ;
	text-align:center ;
	font-family: monospace ;

	-webkit-animation: blink .5s step-end infinite alternate; 
}