日期:2014-05-17  浏览次数:20611 次

怎么修改网页按钮的风格啊。。
求教啊。。我在做界面时想把按钮做到漂亮点,
  <input type="submit" name="button" id="button" value="发帖" style="background:url(image/like_button.png);"/>
这个出不来啊。。求指导
------解决方案--------------------
 <input type="submit" name="button" id="button" value="发帖" style="background:url(image/like_button.png);"/>
中style的内容有错误,因该为style="background-image:url(image/like_button.png);"
------解决方案--------------------
图片能访问到吗? 给按钮加上一个高度和宽度试试。
------解决方案--------------------
引用:
<input type="submit" name="button" id="button" value="发帖" style="background:url(image/like_button.png);"/>
中style的内容有错误,因该为style="background-image:url(image/like_button.png);"


這個不是錯誤 background可以這麼寫 這是個簡寫而已
------解决方案--------------------
<input type="submit" name="button" id="button" value="发帖" style="background:url(btn.png); width:200px; height:50px; border:none; cursor:pointer;" />

我看LZ的沒錯啊
這是我寫的 就再你的基礎上加了個width height 這個要跟圖片一樣的 然後border去掉 再加個鼠標樣式就好了
如果還要繼續美化 就弄個鼠標hover的樣式吧