2

私は現在ウェブサイトのスタイリングを行っており、少し轍を打っています。

私はこれをターゲットにしてスタイルを設定しようとしています:

<asp:Button ID="cmdUpdate" runat="server" Text="Update Details" CssClass="update_btn" />

このCSSの使用:

div#account .update_btn {
width:108px;
height:27px;
background:url("/furniture/images/buttons/update.jpg") no-repeat 0 0;
clear:both;
float:left;
}

ただし、firebugのボタンを調べると、表示されません。現在、以下のコードでスタイル設定されていますが、上記のコードは表示されません。

div#account input {
border: 1px solid #ccc;
width:150px;
padding:5px 0 5px 10px;
margin: 0 0 10px 0;
float:right;
}

ASPを知らないので、変更を加えることができず、IE7でサポートされていないためinput.button [type="submit"]を使用できません。

任意のヘルプやガイダンスをいただければ幸いです。

4

2 に答える 2

1

あなたのスタイルにコンマを入れてください、それはうまくいくはずです。

div#account, .update_btn {
于 2012-11-11T18:31:45.530 に答える
0

これを試して

div#account input.update_btn {
width:108px;
height:27px;
background:url("/furniture/images/buttons/update.jpg") no-repeat 0 0;
clear:both;
float:left;
}
于 2012-11-11T18:38:55.293 に答える