1

我有这个代码

.sidebar-button
{
    color:#ffffff;
    background-color:#ff9933;
    background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#ffae5e), to(#ff9933));
    background-image:-moz-linear-gradient(top, #ffae5e, #ff9933);background-image:-ms-linear-gradient(top, #ffae5e, #ff9933);
    background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffae5e), color-stop(100%, #ff9933));
    background-image:-webkit-linear-gradient(top, #ffae5e, #ff9933);background-image:-o-linear-gradient(top, #ffae5e, #ff9933);
    background-image:linear-gradient(top, #ffae5e, #ff9933);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffae5e', endColorstr='#ff9933', GradientType=0);
    text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#ff9933 #ff9933 #ff8000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

但它呈现为橙色背景的文本。知道为什么它不能正确渲染吗?我错过了什么吗?

4

2 回答 2

4
height: 30px;
width: 100px;

您需要制作按钮的宽度和高度:http: //jsfiddle.net/uJR2t/

于 2012-06-07T18:11:56.397 回答
1

一旦你开始设计它,你必须完全设计它。它不继承基本的按钮属性。您还可以使用类似http://css-tricks.com/examples/ButtonMaker/的东西来快速创建更详细的按钮。

于 2012-06-07T18:13:23.580 回答