首页 > 网页制作 > CSS

div水平布局两边对齐的三种实现方法

admin CSS 2022-02-05 15:25:18 div   水平布局   两边对齐"

本文主要介绍了div水平布局两边对齐的三种实现方法,分享给大家,具体如下:

方法一

父容器div使用 position: relative;,子div使用 position:absolute;定位,注意边距问题

html

1
2

css

/* 方法一 */
.div-container {
  margin: 10px 0;
  padding: 10px;
  width: 400px;
  border: 2px solid #ccc;
  position: relative;
}
.div1 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
}
.div2 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
  position: absolute;
  /* 边距设置 */
  right: 10px;
  top: 10px;
}

方法二 推荐

父容器div使用 display:flex; justify-content:space-between; 即可

html

3
4

css

/* 方法二 */
.div-container2 {
  margin: 10px 0;
  padding: 10px;
  width: 400px;
  border: 2px solid #ccc;
  display: flex;
  justify-content: space-between;
}
.div3 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
}
.div4 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
}

方法三

父容器div使用display: flex;实现水平排列, 子div设置宽度进行填充占位

html

5
占位div
6

css

/* 方法三 */
.div-container3 {
  margin: 10px 0;
  padding: 10px;
  width: 400px;
  border: 2px solid #ccc;
  display: flex;
  justify-content: space-between;
}
.div5 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
}
.div6 {
  width: 100px;
  height: 50px;
  border: 2px solid red;
}
.div7 {
  width: calc(100% - 100px - 100px);
  height: 50px;
  border: 1px solid #ccc;
}

GitHub 完整代码链接

https://github.com/gywgithub/exercise01/blob/master/div-flex/index.html

到此这篇关于div水平布局两边对齐的三种实现方法的文章就介绍到这了,更多相关div水平布局两边对齐内容请搜索潘少俊衡以前的文章或继续浏览下面的相关文章,希望大家以后多多支持潘少俊衡!

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/web/CSS/73210.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持