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

为什么浮动:正确使div浮动到左边?

如何解决《为什么浮动:正确使div浮动到左边?》经验,为你挑选了1个好方法。

我是CSS的新手.我试图在另一个div(#container)的右下角放置一个div(#inner).我写的float: right;,但在运行HTML时我看到了自下而上的内格容器的角落.这是为什么?代码有什么问题?

#container {
  position: relative;
  border: solid;
  width: 70%;
  height: 40%;
}
#inner {
  position: absolute;
  border: solid;
  bottom: 0;
  float: right;
  width: 30%;
  height: 30%;
}
ABC



1> j08691..:

使用float绝对定位并没有多大意义.我想你想要的right:0不是float:right

#container {
  position: relative;
  border: solid;
  width: 70%;
  height: 40%;
  overflow: auto;
}
#inner {
  position: absolute;
  border: solid;
  bottom: 0;
  right:0;
  width: 30%;
  height: 30%;
}
body,
html {
  height: 100%;
}
ABC
推荐阅读
雯颜哥_135
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有