我原本期望手风琴组件能够展开以匹配其父元素的宽度,但是当它展开时,它不仅会扩展自身,还会扩展父元素,导致左窗格压缩很多。需要做什么才能实现期望的行为?我很感激任何答案。
This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the.accordion-body
, though the transition does limit overflow.tab2 content
我尝试稍微调整一下手风琴标题的宽度及其内容,但这没有用。
#right-pane
元素没有显式声明flex-basis
或width
,因此它将占用所需的空间。当手风琴关闭时,它会按照您的预期工作,因为它的内容宽度较窄(然后由于flex-grow 中的
类)。但是,当显示手风琴的内容时,内容将尝试占用尽可能多的水平空间。flex-grow: 1
,然后会增长以填充剩余空间-1为避免这种情况,请考虑在#right-pane
元素上设置某种
width :25%flex-basis
或width
,例如通过
w-25`此处: