在使用Ext2 form的过程中,发现了一些表单项外观显示的问题:
1、输入框下边的线消失
2、日期控件及combo控件右侧的图片和左侧输入域垂直方向没有对齐。
这让表单看起来极其难受。
效果如下:今天在JavaEye中找到了解决办法,赶紧贴出来,希望对同样遇到这些问题的朋友有所帮助。
解决办法:
在Ext-all.css中找到如下内容:
.ext-ie .x-form-text {
margin-top:-1px;
margin-bottom:-1px;
height:22px;
line-height:18px;
}
然后替换 margin-bottom:-1px; 为 margin-bottom:0px;