样式和文本框的兼容性问题

时间:2015-07-13 15:19:55

标签: html css internet-explorer

我需要使用边框设置输入文本框的样式。边框目前在FF和Chrome中可见,但不在IE中显示。

我用谷歌搜索了这个并且找不到有效的解决方案。以下是我尝试过的事情:

.text-input sort-item, input.typeText, input[type="text"] {

    border-style: solid !important;
    border-width: 1px !important;
  border-color: #000 !important;

} 
  • 将类添加到输入字段
  • 将类w JS添加到输入字段
  • 只需设置方框
  • 已添加!重要标签
  • 添加了IE条件语句<!--[if lt IE 9]> <script src="//ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <![endif]-->
  • 已添加<meta http-equiv="X-UA-Compatible" content="IE=100" >

这些方法都不起作用。仅在单击文本框或其中包含文本时才会显示样式。

0 个答案:

没有答案