Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发的这个小应用程序的 CSS 有点混乱。 https://modstudio.eu/facebook/hq/test.php
当点击我按钮被按下时,我似乎无法弄清楚如何将内容向下移动,有什么想法吗?我猜这是一个CSS问题,与位置有关:?
你的slide_wrapperdiv 有一个固定的高度。因此,该 div 的内容永远不会超过指定的高度。如果您要将height: 100pxcss 规则更改为min-height: 100px,那么您将获得所需的效果。
slide_wrapper
height: 100px
min-height: 100px