在  IE10中不起作用



大家好,我想在我的代码中的选项值之间有空格,只有第一个选项值在IE10中有效,但在其他浏览器中也没有第二个和第三个选项值,它可以工作f9。

任何人请帮助我

这是代码:

        <div class="propertystatus">  <!-- start of propertystatus -->   
                   <label id="rent"  style=" cursor:pointer;">
     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // THIS IS WORKING IN IE10
<input type="radio" name="radio"  value="For Rent" id="rent" />
                   <font size="+1">کرایی</label><br />
     &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // these not working in IE10
    <label for="lease"  style=" cursor:pointer;"> <input type="radio" name="radio" id="lease" value="For Lease" />
                        گرویی</label><br />
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // these not working in IE10
     <label for="sale"  style=" cursor:pointer;"><input type="radio" name="radio" id="sale" value="For Sale" />
                        فروشی</font></label> 

需要空间的标签或输入样式中放置"左边距"(或"右边距")。

顺便说一句,您应该将所有样式放在外部CSS文件中。

最新更新