变高的问题

时间:2013-08-17 12:40:37

标签: html css-float height

在修改phpBB论坛时,我们需要创建一个自定义主题/帖子视图。

详情请参阅下图 真正的问题是分区1和2.

我使用的代码是updated code

结果是 -

1 个答案:

答案 0 :(得分:0)

你设置你的CSS只需在文件的末尾添加javascript代码,如...

<script type="text/javascript">

var h1=document.getElementById('div1').offsetHeight;
var h2=document.getElementById('div2').offsetHeight;
var h3=document.getElementById('div3').offsetHeight;
var h4=parseInt(h2)+parseInt(h3)+"px";

document.getElementById('div1').style.height=h4;
</script>

我运行此代码,它对我有用。