-5

有人可以帮我删除这个“加号”图像的边框吗?

<div id="Drop Image and Advance Search" style="margin-left: 0px">
    <img id='downarrow' style='float: left;'
        border=none src=".\images\button_plus.gif"
        width="20" height="20"
        onclick="javascript:toggle();"> 
    <img id='uparrow'
        style='display: none; float: left;'
        border=none src=".\images\button_minus.gif"
        width="20" height="20"
        onclick="javascript:toggle();"> 
    <a href="javascript:toggle();"> <u><h4>Advance Search</h4></u></a>
</div>
4

4 回答 4

4

你应该使用border="0"而不是border=none

或者更好的是,因为从 HTML 4.01(源MDN)开始不推荐使用border 属性,所以添加一个样式

<img style="border:0" />
于 2012-11-08T23:23:57.240 回答
0

尝试:

<img border="0" src=".\images\button_minus.gif" width="20" height="20">
于 2012-11-08T23:24:18.313 回答
0

像使用 css

img {
    border: 0 none;
}
于 2012-12-12T12:41:05.827 回答
-2

需要使用style="border:0"

 <div id="Drop Image and Advance Search" style="margin-left: 0px">

        <img id='downarrow' style='float: left; border:0px;'
            src=".\images\button_plus.gif"
            width="20" height="20"
            onclick="javascript:toggle();"> 
        <img id='uparrow'
            style='display: none; float: left; border:0px;'
             src=".\images\button_minus.gif"
            width="20" height="20"
            onclick="javascript:toggle();"> 
            <a href="javascript:toggle();"> <u><h4>Advance Search</h4></u></a>
    </div>
于 2012-11-08T23:34:09.963 回答