前端 - 陨石坑

高度不一的
  • 列表靠底部对齐
  • 2017-09-11  本文已影响0人  Tedding
    <!DOCTYPE HTML>
    <html>
    
    <head>
        <meta charset="utf-8">
        <title>测试文字底部对齐</title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }
    
            body {
                font: 12px/1.5 arial;
            }
    
            ul {
                list-style: none;
            }
    
            ul li {
                display: inline-block;
                *display: inline;
                *zoom: 1;
                width: 1em;
                margin-right: 10px;
                overflow: hidden;
                background: #cecece;
            }
        </style>
    </head>
    
    <body>
        <ul>
            <li style="height: 65px;">65</li>
            <li style="height: 80px;">80</li>
            <li style="height: 40px;">40</li>
            <li style="height: 60px;">60</li>
            <li style="height: 50px;">50</li>
            <li style="height: 70px;">70</li>
        </ul>
    </body>
    
    </html>
    
    预览1.png
    预览2.png
    上一篇下一篇

    猜你喜欢

    热点阅读