Use these classes for border radius and gradient.
HTML code:
<div class="box-radius ">border radius with gradient</div>
CSS code:
.box-radius { -webkit-border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } .gradient { background-image: -moz-linear-gradient(top, #ff4317, #891a00); background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #ff4317),color-stop(1, #891a00)); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ff4317',endColorstr='#891a00'); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ff4317',endColorstr='#891a00')";
Priyanka
source share