
Hello,
I added a CSS gradient to this button, but it seems like a strange line appears. Is there any way to fix this?
CSS:
#view-content .billing-form #submit { background: #94c723; background: -moz-linear-gradient(top, #94c723 0%, #6cb119 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#94c723), color-stop(100%,#6cb119)); background: -webkit-linear-gradient(top, #94c723 0%,#6cb119 100%); background: -o-linear-gradient(top, #94c723 0%,#6cb119 100%); background: -ms-linear-gradient(top, #94c723 0%,#6cb119 100%); background: linear-gradient(to bottom, #94c723 0%,#6cb119 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94c723', endColorstr='#6cb119',GradientType=0 ); border: none; border-top: 1px solid #a1d61a; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #FFFFFF; font-size: 18px; line-height: 40px; padding: 0 70px; font-weight: bold; font-family: Arial, sans-serif; }
source share