信息:使用Chrome版本29.0.1547.62 m和IE 7.0.6002.18005
我试过搜索SO和Google,但从来没有真正找到一个有效的答案,无论我是否正确应用(试过this和this),还是没有完全回答问题我在问......
我正在网络内部使用一个非常简单的网站。我唯一的问题是当我将窗口调整到iFrame #calcframe {min-width:510px}
+ div #panel {width:186px}
的值以下时,calcframe
会移到面板下方。
以下是相关代码:
<!DOCTYPE HTML>
<HTML>
<HEAD>
<STYLE>
body {font-family:'Arial'; font-size:90%}
html, body {height:100%; margin:0; padding:0}
#panel {background:black; color:white; width:186px; height: calc(100% - 75px); float:left}
#content {height: calc(100% - 75px)}
#spacer {background:black; font-size:400%; color:white ; height:75px}
#calcFrame {height: calc(100% - 3px); width: calc(100% - 186px); min-width:510px; margin:0; padding:0}
</STYLE>
<SCRIPT LANGUAGE="JavaScript">
function OpenHTML(cC) {
document.getElementById("cF").src=cC + ".html"
}
</SCRIPT>
</HEAD>
<BODY>
<div id='spacer'>
SC
</div>
<div id='panel'>
<input type='radio' name='CalcType' id='L' onClick="OpenHTML(this.id)">L<br>
<input type='radio' name='CalcType' id='U' onClick="OpenHTML(this.id)">U<br>
<input type='radio' name='CalcType' id='D' onClick="OpenHTML(this.id)">D<br>
<input type='radio' name='CalcType' id='P' onClick="OpenHTML(this.id)">P<br>
</div>
<div id='content'>
<iframe id='cF' frameborder="0")></iframe>
</div>
</BODY>
</HTML>
请温柔:),我是自学成才。
答案 0 :(得分:1)
尝试将您不希望调整大小的项目包装到div中,将其称为“包装器”。然后在“wrapper”上设置min-width,让我们说510px。不应更改此div容器内的任何内容。 另外,尝试将html标记保持为小写。 :)
<!DOCTYPE HTML>
<html>
<head>
<style>
body {font-family:'Arial'; font-size:90%}
html, body {height:100%; margin:0; padding:0}
#panel {background:black; color:white; width:186px; height: calc(100% - 75px); float:left}
#content {height: calc(100% - 75px)}
#spacer {background:black; font-size:400%; color:white ; height:75px}
#calcFrame {height: calc(100% - 3px); width: calc(100% - 186px); margin:0; padding:0}
#wrapper {min-width: 510px;}
</style>
<script LANGUAGE="JavaScript">
function OpenHTML(cC) {
document.getElementById("cF").src=cC + ".html"
}
</script>
</head>
<body>
<div id="wrapper">
<div id='spacer'>
SC
</div>
<div id='panel'>
<input type='radio' name='CalcType' id='L' onClick="OpenHTML(this.id)">L<br>
<input type='radio' name='CalcType' id='U' onClick="OpenHTML(this.id)">U<br>
<input type='radio' name='CalcType' id='D' onClick="OpenHTML(this.id)">D<br>
<input type='radio' name='CalcType' id='P' onClick="OpenHTML(this.id)">P<br>
</div>
<div id='content'>
<iframe id='cF' frameborder="0")></iframe>
</div>
</div>
</body>
</html>
答案 1 :(得分:1)
这可能有效
<div>
<div id='panel'> </div>
<div id='content'> </div>
</div>
并使#panel float:left