为了账号安全,请及时绑定邮箱和手机立即绑定

CSS布局相关

标签:
Html/CSS

CSS相关

1.左边定宽,右边自适应方案:

/* 方案1 */.left {    width: 120px;    float: left;
}.right {    margin-left: 120px;
}/* 方案2 */.left {    width: 120px;    float: left;
}.right {    float: left;    width: calc(100% - 120px);
}

2.左右两边定宽,中间自适应

/* 方案1:中间列一定要放在左右两列的后面  */.left {    float : left;    height: 200px;    width: 200px;    background-color: red;
}.right {    float: right;    height: 200px;    width: 200px;    background-color: green;
}.center {    height: 200px;    margin: 0 210px;    background-color: blue;
}/* 方案2 */.left {    float : left;    height: 200px;    width: 200px;    background-color: red;
}.right {    float: right;    height: 200px;    width: 200px;    background-color: green;
}.center {    height: 200px;    margin-left: 200px;    width: calc(100% - 400px);
}/* 方案3 */.wrap {    display: flex;
}.left {    width: 120px;
}.right {    width: 120px;
}.center {    flex: 1;
}

3.CSS左右垂直居中

  1. 设置padding

  2. 绝对定位

  3. vertical-align

  4. table-cell

  5. 行内元素居中

  6. flex

/* 1 */<div class="layout">
    <h1>hello world</h1>
    <h1>hello world</h1>
</div>.layout{  text-align: center;  padding : 40px 0;  background-color: #ddd;
}/* 2 */.layout {    position: absolute;    left: 50%;    right: 50%;    border: 1px solid red;    transfrom: translate(-50%, -50%);    /* 如果知道宽度可采用负margin,兼容ie */}/* 3 */.layout {    height: 500px;    width: 400px;
}.layout:before {    content: '';    display: inline-block;    height: 100%;    vertical-align: middle;
}h1 {    vertical-align: middle;    display: inline-block;
}/* 4 */.layout {    display: table;    width: 400px;    height: 400px;    text-align:center;
}h1 {    display: table-cell;    vertical-align: middle;
}/* 5 */.layout {    height: 200px;    text-align: center;
}span {    line-height: 200px;
}/* 6 */.layout {    display: flex;    justify-content: center;    align-items: center;
}

4.box-sizing

  • content-box: 默认值 width只包括内容的宽度,总宽度 = width + margin + padding + border

  • border-box: width = padding + border + 内容, 总宽度 = margin + width

5. 格式化上下文

  • BFC:块级格式化上下文,也就是产生一个容器,容器中的内容不会影响到外面的元素。也就是要脱离文档流。

  1. float 值不为 none

  2. overflow 的值不为 visible

  3. position 的值不为relative 和 static

  4. display 的值为 table-cell、table-caption、inline-block



作者:宿雨jj
链接:https://www.jianshu.com/p/1829371724cf


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

举报

0/150
提交
取消