我们为即将发布的CMS发布了一个编辑器。
请参阅:http://wip.redaxscript.com/home/welcome
编辑器使用当前模板的css并加载其他模板 fix.css(在iframe中)覆盖一些规则:
* {
background-image: none !important;
min-height: 0px !important;
}
#breadcrumbs, #content .sidebar, #footer, #header, #search_form {
display: none;
}
#content {
margin: 0px;
width: 100%;
}
问题:首次加载时“min-height:0px!important;”似乎无法正常工作 - 在第二次加载时,编辑器iframe的高度应该是100px。其他规则如无背景(fix.css)正在首次加载并被覆盖。
答案 0 :(得分:0)
您的iframe似乎有内联样式
<iframe frameborder="0" class="textarea" style="display: block; height: 490px;"></iframe>
当我使用firebug移除height属性时,文本区域高度降低到100px