比如我有一个按钮,要怎么在这个按钮旁边加一张小图片呢?能给详细的代码吗,谢谢。

解决方案 »

  1.   

    很多方法啊
    方法一:<button><img src="" /></button>
    方法二:给按钮设置样式,添加背景图片
    <style type="text/css">
    .button {
    background-image:url(btn.gif);
    border-width:0;
    color:Black;
    height:28px;
    line-height:20px;
    width:82px;
    cursor: hand;
    }
    </style>
    <input type="button" value="按钮" class="button" />
    方法三:直接用一张图片做按钮 <a href="#"><img src="btn.gif" /></a>