页面架构——居中布局

作者: 陈老板_ | 来源:发表于2018-01-16 20:31 被阅读87次

水平居中

使用inline-block+text-align实现子模块在父模块中居中

例:.child{ display: inline-block; } .parent{ text-align: center; } <div class="parent"><div class="child">Demo</div></div>
优点:兼容性比较好,能兼容IE6,7

使用table+margin

例:.child{ display: table; margin: 0 auto; } <div class="parent"><div class="child">Demo</div></div>
优点:不需要设置父元素

使用absolute+transform

.parent{
        position: relative;
    }
.child{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    } 
<div class="parent"><div class="child">Demo</div></div>

优点:绝对定位脱离文档流,不会影响其他元素

使用flex+justify-content

.parent{
        display: flex;
        justify-content: center;
    }
<div class="parent"><div class="child">Demo</div></div>

垂直居中

使用table-cell+vertical-align

.parent{
        display: table-cell;
        vertical-align: middle;
    }
<div class="parent"><div class="child">Demo</div></div>

使用absolute+transform

.parent{
        position: relative;
    }
.child{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    } 
<div class="parent"><div class="child">Demo</div></div>

优点:绝对定位脱离文档流,不会影响其他元素

使用flex+align-items

.parent{
        display: flex;
        align-items: center;
    }
<div class="parent"><div class="child">Demo</div></div>

水平,垂直都居中

结合以上。

如图所示,一个水平排列的列表,每项高度都未知,但要求底部对齐,有哪些方法可以解决呢?


方法1:

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>水平列表的底部对齐_方法1</title>
    <style>
        body{margin:0 auto;padding:0;}
        ul{list-style-type:none;margin:0;padding:0;}
        /*
            父元素display:table-cell;vertical-align:bottom;
            子元素display: inline-block;
        */
        .list ul{display:table-cell;vertical-align:bottom;}
        .list li{display:inline-block;width:100px;}
        .list li.l1{background:#006699;height:200px;}
        .list li.l2{background:#990000;height:150px;}
        .list li.l3{background:#009900;height:100px;}
        .list li.l4{background:#009999;height:180px;}
    </style>
</head>
<body>
<div class="list">
    <ul>
        <li class="l1"></li>
        <li class="l2"></li>
        <li class="l3"></li>
        <li class="l4"></li>
    </ul>
</div>
</body>
</html>

方法2:

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>水平列表的底部对齐_方法2</title>
    <style>
        body{margin:0 auto;padding:0;}
        ul{list-style-type:none;margin:0;padding:0;}
        /*
            父元素position:relative;
            子元素position:absolute;bottom:0;
        */
        .list ul{position:relative;width:400px;height:200px;}
        .list li{position:absolute;bottom:0;width:100px;}
        .list li.l1{left:0;background:#006699;height:200px;}
        .list li.l2{left:100px;background:#990000;height:150px;}
        .list li.l3{left:200px;background:#009900;height:100px;}
        .list li.l4{left:300px;background:#009999;height:180px;}
    </style>
</head>
<body>
<div class="list">
    <ul>
        <li class="l1"></li>
        <li class="l2"></li>
        <li class="l3"></li>
        <li class="l4"></li>
    </ul>
</div>
</body>
</html>

方法3:

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>水平列表的底部对齐_方法3</title>
    <style>
        body{margin:0 auto;padding:0;}
        ul{list-style-type:none;margin:0;padding:0;}
        /*
            父元素display:flex;align-items:flex-end;
        */
        .list ul{display:flex;align-items:flex-end;}
        .list li{width:100px;}
        .list li.l1{background:#006699;height:200px;}
        .list li.l2{background:#990000;height:150px;}
        .list li.l3{background:#009900;height:100px;}
        .list li.l4{background:#009999;height:180px;}
    </style>
</head>
<body>
<div class="list">
    <ul>
        <li class="l1"></li>
        <li class="l2"></li>
        <li class="l3"></li>
        <li class="l4"></li>
    </ul>
</div>
</body>
</html>

一个幻灯片效果如图:

已知结构如下:

<div class="slide">

<div class="pointer"><i></i><i></i><i></i></div>

</div>

要求如下:幻灯(slide)宽高未知,指示器(pointer)在底部且水平居中,距离底部10px,指示器中的圆直径为10px,个数未知,背景为黑色,间距为5px,请完成CSS。

!DOCTYPE html>
   <html lang="en">
   <head>
       <meta charset="UTF-8">
       <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
       <title>幻灯布局</title>

       <style type="text/css">  
       *{padding:0;margin: 0;}
       html,body{width: 100%;height: 100%;}
       .slide{background-color: #9dc3e7;width: 75%;height: 38%;position: relative;}
       .slide .pointer{position: absolute;bottom:10px;left: 50%;transform:translateX(-50%);}
       .slide .pointer i{display: inline-block;width: 10px;height: 10px;border-radius:50%;background-color: #000;margin-right: 5px;}
       </style>
   </head>
   <body>

    <div class="slide">
    <!-- 图片省略 -->
    <!-- 以下是指示器 -->
    <div class="pointer"><i></i><i></i><i></i></div>
</div>

   </body>
   </html>

相关文章

  • 页面架构——居中布局

    水平居中 使用inline-block+text-align实现子模块在父模块中居中 例:.child{ disp...

  • 页面布局居中问题

    css页面布局水平垂直居中问题 居中问题

  • flex布局--总结

    手机页面实例 产品列表 完美居中pc页面布局

  • 前端面试重点——居中问题

    前端面试重点——居中问题 在页面布局开发中,居中问题是我们经常碰到的问题,掌握居中问题对于解决页面布局非常重要,同...

  • CSS常用居中方法

    在使用CSS对页面进行样式布局的时候,居中是我们最经常用到的布局之一,而居中布局又分为水平居中和垂直居中。本文将要...

  • Html和CSS布局技巧

    单列布局水平居中水平居中 水平居中的页面布局中最为常见的一种布局形式,多出现于标题,以及内容区域的组织形式,下面介...

  • css几个经典布局实例

    一、水平居中   水平居中的页面布局中最为常见的一种布局形式,多出现于标题,下面介绍几种实现水平居中的方法。   ...

  • 布局技巧总结

    上一篇对布局做了简单介绍,在这节中加以补充 单列布局 一、水平居中 水平居中是页面布局中常用的布局方式,多出现于标...

  • css notebook

    使用flex实现页面居中 Flex 布局教程:语法篇 学习CSSflexbox

  • Html和CSS布局技巧总结(偶尔回顾回顾布局也是很有必要的)

    一、单列布局 1.水平居中 水平居中的页面布局中最为常见的一种布局形式,多出现于标题,以及内容区域的组织形式,下面...

网友评论

    本文标题:页面架构——居中布局

    本文链接:https://www.haomeiwen.com/subject/prysoxtx.html