gpt4 book ai didi

jquery - 动态和自定义 div 定位

转载 作者:行者123 更新时间:2023-11-28 02:06:42 28 4
gpt4 key购买 nike

我有这个div结构

<div class="panel">
<div class="north"></div>
<div class="center"></div>
</div>

外层是jQuery resizable我试着用百分比定位 div,

.north{height:30%}
.center{height:70%}

完美,我明白了
enter image description here

现在我被困在如何得到这个:
enter image description here
有什么帮助吗?
请不要忘记外部 div 是可调整大小的。

Here是我的起点。

编辑
我也试过了

.panel{display:table;}
.north,.center{display:table-row;}

但这不适用于 IE<8

最佳答案

另一种使用 float 的解决方案:http://jsfiddle.net/KMWw4/2/

.panel {
width: 300px;
height: 500px; /* explicit height */
float: left;
}
.north {
float: left; display: inline; /*iefix*/
width: 100%;
}
.center {
height: 100%;
}

.panel-percent .north {
height: 30%; /* you can use percentages */
}
.panel-fixed .north {
height: 100px; /* ... or pixel height */
}


关于jquery - 动态和自定义 div 定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11034267/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com