CSS利用display:flex实现ul-li中tab垂直居中布局

本文介绍了如何使用CSS的display:flex属性来实现移动端echart表格下方按钮的垂直居中布局,以及类似tab的切换效果。通过示例代码展示了flex布局的运用,适合快速参考和复用。
摘要由CSDN通过智能技术生成

   老规矩,先看看需求:要求在移动端实现echart表格下面添加点击按钮,实现类似与tab那种echart表格切换。按钮布局
类似于如下结果:
在这里插入图片描述
尝试过一些方法,发现可以利用display:flex、 flex-wrap: nowrap;实现类似效果
代码如下:

 <style>
        ul li{
   
            /*去除ul中list的“圆点”之类的样式*/
            list-style:none;
        }
        .stationList{
   
            width: 100%;
        }
        .stationList ul {
   
            /*display:flex 意思是弹性布局*/
            display: flex;
            /*flex-wrap:nowrap 意思是弹性布局-不换行,也就是子元素不换行*/
            /*flex-wrap: nowrap;*/
            flex-wrap: nowrap;
            /*设定ul所占的宽度百分比*/
            width:60%;
            /*让ul在.stationList中水平垂直居中*/
            margin:0px auto;
           /* padding: 0 0px;*/
        }
        .stationList ul li{
   
            height: 90px;
            /*设定li所占的宽度*/
            width:45%;
            /*内容垂直居中*/
            line-height: 90px;
            /*内容水平居中*/
            text-align: center;
            font-size: 20px;
            border: 1px solid red;
            box-sizing: border-box;
            margin: 5px 1%;
            color: #000;
            background:red;
            /*cursor:pointer意思是是计算机中把鼠标指针的形状弄成一只伸出食指的手,如下图*/
            cursor:pointer;
        }
    </style>
<body>
<div class="stationList" >
    <ul id="tab">
        <li id="tab1" class="selected" >上一页</li>
        <li id="tab2" >下一页</li>
    </ul>
</div>
</body>

效果
在这里插入图片描述
类似的采用div的布局
代码如下:


                
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>键盘打字</title> <style> /* 基本界面样式 */ *{ /*margin: 0;*/ padding: 0; box-sizing: border-box; list-style: none; /*outline: 1px dashed purple;*/ } body{ display: flex; height: 100vh; justify-content: center;/* 水平居*/ align-items: center; background-color: #000;/* 随内容撑开且垂直居中 */ } .keyboard{ outline-width: 3px; /*background-color: red;*/ } ul.row{ display: flex;/* 弹性布局 */ /* /*height: 300px; */ } ul.row li{ outline-width: 2px; width: 3em;/*em是根据当前字体大小*/ height: 3em; text-align: center; line-height: 3em; border-radius: .4em; color: rgba(0, 0, 0, 0.7); letter-spacing: 1px; margin: 0.4em; } /*设置宽度*/ #tab{ width: 5em; } #caps{ width: 6em; } #leftShift{ width: 8em; } #enter{ width: 6em; } #rightShift{ width: 8em; } #back{ width: 5em; } /*设置颜色*/ .little{ background-color: crimson; /*深红色的*/ border: 2px solid crimson; } .little.selected{ background-color: transparent; color: crimson; } .ring{ background-color: coral; /*珊瑚红*/ border:2px solid coral; } .ring.selected{ background-color: transparent; color: coral; } .middle{ background-color:darkorange; /*深橙色*/ border: 2px solid darkorange; } .middle.selected{ background-color: transparent; color: darkorange; } .forefinger1st{ background-color: gold; border: 2px solid gold; } .forefinger1st.selected{ background-color: transparent; color: gold; } .forefinger2nd{ background-color: khaki;
06-13
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值