Reputation: 896
I'm looking for a way to add a gradient border (from black to grey) only to my top and bottom borders and none to the edges.
Is there any simple way?
Upvotes: 3
Views: 4611
Reputation:
border-top: 10px solid red;
border-bottom: 10px solid red;
border-left-width: 0;
border-right-width: 0;
border-image: linear-gradient(to right, red, violet) 1 stretch;
border-right-width and border-left-width are required for Chrome and Safari.
Upvotes: 6