⑴ css中怎麼修改「列表/菜單」的按鈕的背景圖片如下圖
1、如果你用的是默認的 下拉框。這個箭頭的樣式 跟瀏覽器的版本有關。版本不同樣式就不一樣。
2、如果你要用自定義的圖片的話,恐怕有些困難。
3、你還可以 使用「模擬下拉框的方式」。
⑵ div+css排版添加按鈕背景圖片,在不同瀏覽器顯示不同
<input type="button" value="" style="width:100px; height:20px; border:0; background-image:url(圖片地址);" />
必須得設置border:0這一項。我一直是這么用的,不知道你的用法是啥。
⑶ css按鈕:ACTIVE點擊切換背景圖片
<!DOCTYPEhtml>
<html>
<head>
<style>
#btn{background:red;}
#btn:hover{background:blue;}
</style>
</head>
<body>
<inputid="btn"type="button"/>
</body>
</html>
經驗證是可以的,或許是你的圖片路徑不對,不過ie6不支持偽類:hover屬性,所以如果要兼容ie6就用js或者,用a標簽來代替吧
⑷ css特效中如何使按鈕背景圖片改變
那要看你想怎麼改了,最基礎的改變方法
.div:hover{背景圖}
⑸ div+css布局中的怎麼設置設置按鈕的背景圖片
你可以用<input type="image" src=" "/>,src屬性填入指定的按鈕圖片路徑
⑹ CSS如何設置按鈕背景圖片
我也遇到過這個問題,看下面的:
..button{
background-image:url("***.jpg");
}
按鈕上不出現圖片
..button{
background-color:blue;
background-image:url("***.jpg");
}
這樣設置終於顯示背景圖片了
我就是這樣無意中發現的
⑺ CSS 代碼中background 背景圖片里 如何設置按鈕。
<astyle="background:url();display:block;width:800px;height:400px;"></a>
就是把鏈接塊級化,設置大小,然後設置背景圖片,自然整張圖都可鏈接
⑻ CSS給按鈕設置透明背景圖有一圈灰色邊框
input{
width:200px;
height:125px;
background:url("button.png");
border:0;/*加上這行*/
}
⑼ 如何設置按鈕背景圖片
很多人提交表單時都喜歡用一個圖片來作為提交按鈕,大多數人可能用JS去操作表單的提交,即當用戶點擊這個圖片時響應一個JS來提交表單.其實還有一種方法,就是直接設置SUBMIT按鈕的圖片背景.設置它的圖片背景有二種方法,一是直接在按鈕中設置,如下:
<input type="submit" name="submit_button" value="" style="background:url(imagepath) no-repeat" />
這種設置方法在FF下可見,但是在IE下不可見,不知道為什麼.反正我測試時IE下是不可見的,換成這樣也不行:background-image\backgroundimage;
另一種方法就是用CSS來設置,實現方法如下:
<style type="text/css">
.submitStyle {background:url(imagpath);border:0px}
</style>
這種方法是比較好的,因為在IE或FF下都能正常顯示.
⑽ css按鈕背景圖片不顯示
應該是圖片路徑不對,具體參考以下代碼
<style>
.zzjs_net {
font: 12px Tahoma, Verdana;//設置文字大小、字體
padding: 0 5px;//設置間距
color: #D3E0E7;//文字顏色
background-image: url("/img/2010bu.gif");//背景圖片路徑
background-repeat: repeat-x;//橫向不重復
background-position: 0 50%;
outline: 1px solid #D3E0E7;
border: 1px solid #FFF !important;//邊框
height: 19px !important;//高度
border: 1px solid #D3E0E7;//邊框
height: 21px;//高度
line-height: 17px;//行度
}
</style>
<input class="zzjs_net" type="submit" name="rulesubmit" value="同 意" style="height: 23px">「同意」按鈕
<input class="zzjs_net" type="button" name="return" value="不同意" style="height: 23px">「不同意」按鈕