1

3枚の画像からボタンを作りたいです。複数の背景で CSS3 を使用しています。

私はこれを必要とする:

http://i.stack.imgur.com/LxyIQ.png

しかし、私はこれを取得します:

http://i.stack.imgur.com/5vUHz.png

これは私のコードです:

a.activemenu
{
font-family:"Arial",Arial, serif;
font-size:25px;
text-align:center;
text-decoration:none;
color:white;
background-image:url("buttonleft.png"),url("buttonmid.png"),url("buttonright.png");
background-repeat:no-repeat,repeat-x,no-repeat;
padding:0 33px 62px 33px;
}

私は何が間違っているのでしょうか?

4

3 に答える 3

1

このボタンは、画像なしの css だけを使用して作成します。

    a.activemenu {
background: #931e5b; /* Old browsers */
background: -moz-linear-gradient(top, #931e5b 0%, #3c0c25 100%); /* FF3.6+ */
background:A -webkit-gradient(linear, left top, left bottom, colorQ-stop(0%,#931e5b), color-stop(100%,#3c0c25)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #931e5b 0%,#3c0c25 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #931e5b 0%,#3c0c25 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #931e5b 0%,#3c0c25 100%); /* IE10+ */
background: linear-gradient(to bottom, #931e5b 0%,#3c0c25 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#931e5b', endColorstr='#3c0c25',GradientType=0 ); /* IE6-9 */
    border:0px;
    font-family:"Arial",Arial, serif;
font-size:25px;
text-align:center;
padding:10px;
    border-radius: 0px 0px 10px 10px;
    color:#fff;
    text-decoration:none;
}

http://jsfiddle.net/parslook/LhMWn/2/

于 2013-09-10T17:26:17.267 に答える
1

これを試して:

background: url(buttonleft.png) left bottom no-repeat, 
            url(buttonmid.png) left bottom repeat-x, 
            url(buttonright.png) right bottom no-repeat;

参考文献 http://www.css3.info/preview/multiple-backgrounds/

于 2013-09-10T17:21:59.063 に答える
0

CSS3 を使用している場合 (タグで説明されているように)、いくつかのグラデーションと境界半径を使用して単純化できます。

a.activemenu {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;

    font-family: arial, sans-serif;    
    color: #fff;
    text-decoration: none;
    text-align: center;

    padding: 10px 33px;

    background: #931e5b;
    background: -webkit-linear-gradient(bottom, #3e0c26, #931e5b);
    background: -moz-linear-gradient(bottom, #3e0c26, #931e5b);
    background: -ms-linear-gradient(bottom, #3e0c26, #931e5b);
    background: -o-linear-gradient(bottom, #3e0c26, #931e5b);
    background: linear-gradient(bottom, #3e0c26, #931e5b);
}

このフィドルを参照してください:http://jsfiddle.net/LcW6K/

于 2013-09-10T17:22:11.897 に答える