我有一个侧边栏固定在文本文档的侧面。侧边栏的内容是固定大小的内容提交表单,下面是提交内容的列表。当然,我希望提交的内容可以滚动,所以我将溢出设置为auto;但是,当我将屏幕调整到较小的尺寸时,内容所包含的div将被切断,最后几个对象将丢失。
目前侧边栏是固定的,高度为100%,提交表单高度为300 px,内容列表高度为70%
#sidebar{
position:fixed;
height:100%;
}
#sidebarUL{ /*this is the submission list*/
height:70%;
overflow: auto;
}
#draggable{
/*height here depends on content ready for submission, though it is absolute; 400px etc*/
}
答案 0 :(得分:0)
您是否尝试过overflow: scroll
?