-1

こんにちは、次の CSS を使用してカスタム ボタンを作成しています

    .myBlackButton02 {
    -moz-box-shadow:inset 0px -3px 7px 0px #6a6f76;
    -webkit-box-shadow:inset 0px -3px 7px 0px #6a6f76;
    box-shadow:inset 0px -3px 7px 0px #6a6f76;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #61656c), color-stop(1, #292b2e));
    background:-moz-linear-gradient(top, #61656c 5%, #292b2e 100%);
    background:-webkit-linear-gradient(top, #61656c 5%, #292b2e 100%);
    background:-o-linear-gradient(top, #61656c 5%, #292b2e 100%);
    background:-ms-linear-gradient(top, #61656c 5%, #292b2e 100%);
    background:linear-gradient(to bottom, #61656c 5%, #292b2e 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#61656c', endColorstr='#292b2e',GradientType=0);
    background-color:#61656c;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    border:1px solid #040405;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Tahoma;
    padding:9px 23px;
    text-decoration:none;
    text-shadow:0px 1px 0px #263666;
}
.myBlackButton02:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #292b2e), color-stop(1, #61656c));
    background:-moz-linear-gradient(top, #292b2e 5%, #61656c 100%);
    background:-webkit-linear-gradient(top, #292b2e 5%, #61656c 100%);
    background:-o-linear-gradient(top, #292b2e 5%, #61656c 100%);
    background:-ms-linear-gradient(top, #292b2e 5%, #61656c 100%);
    background:linear-gradient(to bottom, #292b2e 5%, #61656c 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#292b2e', endColorstr='#61656c',GradientType=0);
    background-color:#292b2e;
}
.myBlackButton02:active {
    background:transparent;
}

そして、私が使用しているhtmlは

<div id="d1" style="height:46px;top:0px;left:0px;right:0px;" class="heading01" >
        <div id="d2" class="style1" style="position:absolute;left:10px;top:4.5px;color:#FFF;">Heading</div>

        <div align="right" style="padding-top:2.5px;padding-right:10px;">

            <button class="myBlackButton02" style="font-size:10pt;outline:none;"> x </button>
            <button class="myBlackButton02" style="font-size:10pt;outline:none;"> x </button>


            <button class="myBlackButton02" style="font-size:10pt;outline:none;">
                <img src="icons/extensions/right_16.png" style=""/> 
            </button>
</div>

そして、heading01 の CSS は

.heading01{
    background: rgb(69,72,77); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

私が得ているものは

ここに画像の説明を入力

しかし、私が望むのは、すべてのボタンを同じ垂直高さにすることです。これを行う方法があることは知っていますが、方法がわかりません。どんな助けでも大歓迎です。画像を背景画像として設定してみましたが、グラデーションが単色になり、divで試しても画像は同じです。ありがとう

4

3 に答える 3

0

CSS で margin-top: x px; を設定します。それはそれらをすべてレベルにするはずです。幸運を

于 2014-06-08T21:32:16.140 に答える
0

次のコードを .myBlackButton02 CSS に追加する必要があります。

vertical-align: middle;
width: 50pt;
height: 30pt;

画像に応じて、好みのボタンの幅と高さを定義する必要があります。

于 2014-06-08T21:38:36.013 に答える