Blog

CSS3 Gradient Borders

.gradient_border{ border-width: 3px; border-style: solid; -webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, from(black), to(rgba(0, 0,…

CSS3 ::selection Selector

::-moz-selection { /* For Firefox */ color: white; background: #65208a; } ::selection { /*…

Border radius – CSS3

.border-radius { -webkit-border-radius: 10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; border-radius: 10px…

Scale on mouse hover with Transition

.scale:hover{ -ms-transform: scale(1.07,1.07); /* IE 9 */ -webkit-transform: scale(1.07,1.07); /* Safari */ -o-transform: scale(1.07,1.07);…