在修改 phpBB 论坛时,我们需要创建自定义主题/帖子视图。
有关详细信息,请参阅下图 真正的问题是分区 1 和 2。
正在使用的代码是更新的代码
结果是——
无论您设置什么 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>
我运行这段代码,它对我有用。