IE11和Edge之间的HTML设计差异

时间:2018-10-29 05:59:07

标签: html css internet-explorer microsoft-edge

我有一个现有的网页,我在其中插入了用于语言选择的选择列表,我的问题是Internet Explorer上的设计有问题,我的意思是菜单中有很多空格,但仅此部分。我想消除列表之前和提交按钮之后的多余空格。 enter image description here

该列表的代码如下

        <tr>
            <TD  class=blue12bold vAlign=top background="Control_files/bg_navi.gif"  height="5%"><BR />&nbsp;&nbsp;&nbsp;Language
            </TD> 
        </TR>
                <tr>
                    <td class ="second" align="center">&nbsp;&nbsp;&nbsp;
                        <form method="POST" >
                            <SELECT name="language"  >
                                <?php
                                    $lang_select_list_array = array("ro","en","de");
                                    foreach ($lang_select_list_array as $value) {
                                        echo "<option value=\"$value\"";
                                        if ($value == $language) {
                                            echo " selected ";}
                                        echo ">$value</option>";
                                        }

                                ?>
                            </SELECT>
                            <br />
                            <input type="submit" value="Set" style="height:20px; width:80px">

                        </form>
                    </td>
                </tr>

1 个答案:

答案 0 :(得分:0)

我能够通过将html 4.0更改为html 5来解决此问题,现在在所有浏览器中都以相同的方式显示该问题。