谷歌浏览器:单选按钮没有出现在网页中

时间:2012-11-20 10:15:54

标签: html

表单中的单选按钮在chrome中不可见/有时它会出现并再次消失。在某些网站上,我遇到了带有单选按钮的chrome中的错误。但是我得到任何解决方案来解决这个问题。有人知道这个吗?这是一个表格样本,我收到了无线电盒的问题。

<form method="get" action="http://www.google.in/search" style="width:244" target="_blank">
    <table width="242" border="0" align="center" cellpadding="0"  style="font-size:10px">
        <tr>
            <td width="242"><img src=googlelogo.gif style="padding-top:6px;"/>
                <input type="text"   name="q" size="14" maxlength="255" value=""/>
                <input type="submit" value="Search" style="width:52px;">
            </td>
        </tr>
        <tr>
            <td style="padding-top:3px;">
                <input type="radio"  name="sitesearch" value="" />The Web
                <input type="radio"  name="sitesearch" value="website.com" width="auto" height="auto" checked="checked"/>website.com
                <br />
            </td>
        </tr>
    </table>
</form>

1 个答案:

答案 0 :(得分:0)

您使用的是HTML4还是5?

在HTML 5中,table标记的宽度,对齐,cellpadding已过时。

此外,删除border属性中的0,只使用border =“”,因为它只允许空字符串或1.

td的width属性也已过时。

还尝试删除radiobutton上的width和height属性。如果有效,请将其修复为CSS。但首先删除它!