gpt4 book ai didi

css - Bootstrap 下拉列表 "across"div

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

我有一个 Bootstrap 下拉菜单,我想将其放在 div 的右侧,如下所示: enter image description here (虚线是下一个 div 的边缘。)

当我打开列表时,它会填充到宽度然后换行到下一行:

enter image description here

是否有可能使列表的边缘“越过”边界进入下一个 div 而不影响它?

当前的 CSS

/* enclosing div */
#section-left {
padding: 1em;
left: 0;
width: 30%;

overflow-x: hidden;
overflow-y: auto;
border-right: 3px dashed #aaa;
}

/* the div to the right in the screenshots */
#section-middle {
left: 25%;
width: 45%;
overflow-y: auto;
}

/* where the dropdown and image are held */
#section-left-right {
float: right;
height: 120px;
}

#lessons-dropdown {
position: relative;
border: 1px solid #ccc;
border-radius: 5px;
padding: 0 1em 0 1em;
}

#lessons-progress-list li {
padding: 0 1em;
}


#knacke-small {
height: 100px;
}

HTML

<div id="section-left" class="column">

<div id="section-left-right">
<div class="dropdown" id="lessons-dropdown">
<a data-toggle="dropdown" href="#">&#9776; Lektionslista</a>
<ul class="dropdown-menu" id="lessons-progress-list" role="menu" aria-labelledby="dLabel">
<!-- populated dynamically with <li>s -->
</ul>
</div>
<br/>
<img src=... id="knacke-small">
</div>
...
</div>

<div id="section-middle">...

最佳答案

你的容器 section-leftoverflow,它不允许内部 div 显示在限制之外。我不知道其余的代码。你真的需要它吗?

check it without the overflow

关于css - Bootstrap 下拉列表 "across"div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23030075/

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