IE11输入宽度更改时单击 [英] IE11 input width changes when clicked

查看:97
本文介绍了IE11输入宽度更改时单击的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以这只发生在IE11,我不知道发生了什么。当我点击输入元素(基本上焦点事件)的元素的宽度改变。我不能弄清楚CSS来解决这个问题。任何人都有任何想法?

So this only happens in IE11 and I cannot figure out what is going on. When I click the input element (basically the focus event) the width of the element changes. I cannot figure out the CSS to fix this. Anyone have any ideas?

http:// jsfiddle。 net / JmRby / 2 /

<table class="fields" id="EntityDetails_Fields" cellspacing="0" cellpadding="0">
<tbody>
    <tr>
        <td class="Form">Name:</td>
        <td>
            <input name="Name" id="Name" type="text" value="Memorial Park Group" />
        </td>
    </tr>
    <tr>
        <td class="Form">NPI:</td>
        <td>
            <input name="NPI" class="TextBox" id="NPI" type="text" value="" />
        </td>
    </tr>
    <tr>
        <td class="Form">Tax ID:</td>
        <td>
            <input name="TaxIDNumber" id="TaxIDNumber" type="text" value="21-21212121" />
        </td>
    </tr>
    <tr>
        <td class="Form">Medicare:</td>
        <td>
            <input name="MedicareNumber" id="MedicareNumber" type="text" />
        </td>
    </tr>
    <tr>
        <td class="Form">Medicaid:</td>
        <td>
            <input name="MedicaidNumber" id="MedicaidNumber" type="text" value="1234567" />
        </td>
    </tr>
    <tr>
        <td class="Form">In Use:</td>
        <td><span id="InUse"><input name="InUse$ctl00" id="InUse_ctl00" type="checkbox" checked="checked" /></span>
        </td>
    </tr>
</tbody>

CSS

table.fields {
    width: 98%;
    margin: 4px 1%;
}
table.fields .Form, table.fields .fl {
    padding: 2px;
}
table.fields > tbody > tr > td {
    padding: 2px 1%;
    vertical-align: middle;
}
.Form, .form, .fl {
    white-space: nowrap;
    width: 10%;
    vertical-align: middle;
}
table.fields > tbody > tr > td {
    padding: 2px 1%;
    vertical-align: middle;
}
table.fields input[type='text'], table.fields input[type='password'], table.fields select, .inpt {
    width: 98%;
    border: solid 1px #666;
    color: #000;
    box-sizing: border-box;
}


推荐答案

http://jsfiddle.net/3TwKF/

input::-ms-clear {
    display:none;
}

这是 culprit(ms-clear)的文档

这篇关于IE11输入宽度更改时单击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆