如何使用CSS定位div标签

时间:2017-02-27 01:17:33

标签: html css

我在使用 CSS 定位div标记方面遇到了问题。

您会使用哪些代码来div 位于顶部右上角左上角等。 ?

1 个答案:

答案 0 :(得分:0)

使用position: absolutetopleftbottomright CSS属性:

.top { top: 0 }
.bottom { bottom: 0 }
.left { left: 0 }
.right { right: 0 }
.center { left: 0; right: 0; margin: 0 auto; }

div {
  position: absolute;
  width: 5em;
  height: 5em;
  background-color: green;
}
<div class="top center"></div>
<div class="bottom center"></div>
<div class="top left"></div>
<div class="bottom left"></div>
<div class="top right"></div>
<div class="bottom right"></div>