你好,

我已经向该按钮添加了CSS渐变,但是似乎出现了一条怪异的线。有什么办法可以解决这个问题?

CSS:

#view-content .billing-form #submit {
    background: #94c723; /* Old browsers */
    background: -moz-linear-gradient(top,  #94c723 0%, #6cb119 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#94c723), color-stop(100%,#6cb119)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #94c723 0%,#6cb119 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #94c723 0%,#6cb119 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #94c723 0%,#6cb119 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #94c723 0%,#6cb119 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94c723', endColorstr='#6cb119',GradientType=0 ); /* IE6-9 */
    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;
}

最佳答案

只是一个想法,但为什么不将渐变叠加在pixlr上,然后将其设置为背景图像。这样您就不再有此问题,并且可以节省大约十行代码。

关于css - 带有CSS渐变的奇怪Safari CSS错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16264983/

10-13 00:19