这个CSS3发生了什么?我找不到它

时间:2013-05-07 05:12:10

标签: html css

我已经制作了一个带有一些效果的按钮。当我在浏览器中测试时,它只能在mozilla中正常工作。我无法找到为什么不在-webkit-浏览器中工作,任何人都可以告诉我为什么这段代码不起作用请检查这个小提琴http://jsfiddle.net/sarfarazdesigner/Qtw3x/

这里是html代码

<button name="feat-btn" id="feat-btn" class="push-button" type="submit">
    <span>Submit</span>
</button>

这里是css

.push-button {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.push-button span:after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #357536 transparent -moz-use-text-color;
    border-image: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-style: solid solid none;
    border-width: 5px 5px 0;
    content: "";
    display: block;
    margin: 0 -1.7em;
    overflow: hidden;
    text-indent: -9999px;
}
.push-button span:before {
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    content: ".";
    display: block;
    height: 55px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.push-button span {
    background-color: #4FB051;
    border-bottom: 1px solid #6FBE70;
    display: inline-block;
    height: 49px;
    line-height: 50px;
    margin-bottom: 5px;
    min-width: 110px;
    padding: 0 1.7em;
    position: relative;
}
.push-button:hover  span{background-color:#52a853;}

先在mozilla中查看,然后了解它的外观,或者您可以看到下图 这是在寻找mozilla enter image description here

这是在webkit浏览器中查找 enter image description here

2 个答案:

答案 0 :(得分:5)

border-color选择器

中的.push-button span:after会发生奇怪的事情
border-color: #357536 transparent -moz-use-text-color;

只需将其更改为#357537

即可

jsFiddle

border-color: #357536;

在我的Chrome和Firefox中都可以使用该更改。

答案 1 :(得分:2)

删除

   transparent -moz-use-text-color 

来自

   border-color: #357536 transparent -moz-use-text-color;

我没有看到任何变化,但工作正常。 结果是:

  border-color: #357536;