Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
div 在 ie7 中的绝对位置消失,但是当我使用 ie 开发人员工具并分配任何 css 规则时,例如 zoom:1; 它有效,当我实际将其放入代码中时,它根本不起作用。
可能只是与 IE 的兼容性问题,请尝试以下操作
创建一个 CSS 页面来控制 DIV 标签的位置,给 DIV 标签一个 ID 和一个 CLASS
然后通过在您的 CSS 页面中执行以下操作来调用 ID
#ID { //Put your styles here }
http://www.w3schools.com/css/default.asp
此问题已通过在绝对定位的 div 下方放置空标签来解决。