1

画像の周りにこの余分な空白がどのように得られているのかわかりません:

ここに画像の説明を入力

マークアップ:

       <div id="member-name"  hidden="true">
            <button type="submit" id="btnExpandSection"><img src="~/Content/Images/plus.jpg" /></button><p id="member-fullName"></p> 
        </div>

スタイル:

   input, textarea 
    {
        border: 1px solid #e2e2e2;
        background: #fff;
        color: #333;
        font-size: .9em;
        margin: 5px 0 6px 0;
        padding: 5px 2px 5px 5px;
        width: 300px;
    }

    img 
    {
        display: block; /* gets rid off any unexpected margins round the image */
        border: 0px;
    }


    input[type="submit"], input[type="button"], button 
    {
            background-color: #ffffff;
            cursor: pointer;
            font-size: 11px;
            font-weight: 600;
            width: auto;
            vertical-align: middle;
        border: 0px;
    }

    td input[type="submit"], td input[type="button"], td button { font-size: 1em; }

アップデート:

そこにはこのスタイルもあります:

#member-name 
{
    margin: 30px 0px 0px 0px;
    height: 30px;
    font-weight: bold;
    color: white;
    padding: 1px 1px 0px 1px;
    background-color: #d28105;
    border: 1px solid darkgray;
}


#member-fullName { margin: 0px 0px 0px 20px;}
#member-fullName p{ display: inline;float: left;overflow: hidden;}
4

2 に答える 2

1

ボタン要素の背景として画像を提供することはできませんか?

#btnExpandSection {
    background: #ffffff url('/Content/Images/plus.jpg') no-repeat center center;
    height: /* image height */;
    width: /* image width */;
}
于 2012-11-02T06:06:04.760 に答える
0

私はこれから始めて、ここから作り直します...

button,
#member-fullName,
#member-name,
#btnExpandSection,
#btnExpandSection img {
    margin: 0;
    padding: 0;
}

<button></button>ただし、タグ間にネストされた画像に対しては、次のことが望ましいでしょう。32px画像の実際の幅と高さの値に置き換えます。

button {
    background-image: url(~/Content/Images/plus.jpg);
    width: 32px;
    height: 32px; 
}
于 2012-11-02T06:33:04.603 に答える