zoukankan      html  css  js  c++  java
  • 记录display:table的使用

    兼容性:不兼容IE7

    1.左右对齐

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>左右两端布局</title>
        <style>
    
        .table {
            display: table;
            border: 1px solid #06c;
            padding: 15px;
            width: 100%;
        }
        
        .table .table-left {
            text-align: left;
            display: table-cell
        }
    
        .table .table-right {
            text-align: right;
            display: table-cell
        }
    
        .table .table-content {
            width: 100px;
            height: 100px;
            border: 1px solid #ccc;
            text-align: center;
            display: inline-block;
            font-size: 40px;
            line-height: 100px;
        }
        </style>
    </head>
    
    <body>
        <div class="table">
            <div class="table-left">
                <div class="table-content">左边</div>
            </div>
            <div class="table-right">
                <div class="table-content">右边</div>
            </div>
        </div>
    </body>
    
    </html>

     

    2.居中

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>图片居中对齐</title>
        <style>
        * {
            box-sizing: border-box;
        }
    
        .table {
            display: table;
            border: 1px solid #06c;
            padding: 5px;
            max-width: 1000px;
            margin: 10px auto;
            width: 100%;
        }
    
        .table-center {
            height: 150px;
            width: 100px;
            border: 1px solid red;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            background-color: #4679bd;
        }
        </style>
    </head>
    
    <body>
        <div class="table">
            <div class="table-center">
                <img src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556086970323&di=51c11bb425e5f92ca3c9e455aad95675&imgtype=0&src=http%3A%2F%2Fpic.58pic.com%2F58pic%2F13%2F20%2F57%2F95i58PIC6Qh_1024.jpg" width="50px" height="50px" alt="logo" />
            </div>
        </div>
    </body>
    
    </html>

    3.平均分

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>平均分</title>
        <style>
        * {
            box-sizing: border-box;
        }
    
        .table {
            display: table;
            border: 1px solid #000;
            padding: 5px;
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
        }
    
        .table ul {
            display: table;
            width: 100%;
            padding: 0;
            border-right: 1px solid #ccc;
        }
    
        .table ul li {
            display: table-cell;
            border: 1px solid #ccc;
            text-align: center;
            height: 100px;
            border-right: none;
            line-height: 100px;
        }
        </style>
    </head>
    
    <body>
        <div class="table">
            <ul>
                <li>1</li>
                <li>2</li>
                <li>3</li>
                <li>4</li>
                <li>5</li>
            </ul>
        </div>
    </body>
    
    </html>

  • 相关阅读:
    女人的话中话(英文版),供男生参考哦
    那个时候的我(漫画连载)
    杨过与小龙女
    盛大正式收购SINA19.5%股份
    揭开SVCHOST.exe进程之谜
    该呼呼咯,各位朋友晚安~
    图解学说上海话
    2005年的12个祝福(2005年传统精美挂历)
    iframe 的自适应高度
    【蜡笔小新全集】+动漫【灌蓝高手】 高速在线看
  • 原文地址:https://www.cnblogs.com/chenbingquan/p/10761289.html
Copyright © 2011-2022 走看看