当前位置:  开发笔记 > 前端 > 正文

Div向下移动而不是隐藏

如何解决《Div向下移动而不是隐藏》经验,为你挑选了1个好方法。



1> David Wilkin..:

您可以white-space: nowrap在容器上使用:https://jsfiddle.net/1631rrpn/3/

#container {
  width: 500px;
  height: 150px;
  border: 1px solid #ccc;
  overflow: hidden;
  white-space: nowrap;
}
#first {
  width: 500px;
  height: 100px;
  background: #666;
  display: inline-block;
}

#second {
  width: 100px;
  height: 100px;
  background: #ccc;
  display: inline-block;
}

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有