I want that i have only top border but with gradient color. Something like this
#grad1 {
height: 200px;
border-top:205px red; /* For browsers that do not support gradients */
border-top:205px -webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */
border-top:205px -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */
border-top:205px -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */
border-top:205px linear-gradient(red, yellow); /* Standard syntax (must be last) */
}
Is this possible and if it is how i can do this?