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.
我正在尝试用另一个下拉框制作一个下拉框,但是每当我将鼠标悬停在一个上时,另一个就会进入下拉框的底部。
这就是现在的情况。
感谢您的帮助!
您可以设置vertical-align元素的属性
vertical-align
.sub{ vertical-align:top; }
演示
问题在于.sub{ display: inline-block; }注入了不必要的定位特征。
.sub{ display: inline-block; }
如果您去掉 display 属性或将其设置为block,然后float: left;改为设置,您将获得所需的效果。
block
float: left;