Skip to content Skip to sidebar Skip to footer

How To Remove Top Border Of Gradient Text In Safari

I added the text gradient using CSS but how can I remove the top border of the gradient.

Solution 1:

Use this in your tag in the style sheet

a { border-top: none; }

Solution 2:

I don't understand why you should be getting a top border for the a unless there is border-top specified somewhere in the styles. If so, just make it none or 0.

border-top: none;

or

border-top: 0;

Post a Comment for "How To Remove Top Border Of Gradient Text In Safari"