zoukankan      html  css  js  c++  java
  • css 多个不定数量提交按钮居中显示,纯css解决

    前几天在公司修改一个css 多个按钮居中问题,其实这样的问题很多前端程序员都遇到过,举个例子吧:

    在一行中有三个按钮或是两个按钮...个数不定,然后间距固定;然后就有很多人把所有按钮放到一个div中,把div置为margin:10px auto(距上10像素,居中,然后又给了一个固定宽度,按钮放在这个div中,这样按钮就不能具体居中了) ,也不通用如果按钮减少到两个 或一个怎么办,

    也有很多人用javascript 动态的算出宽度然后计算一大堆,并且很多时候比好用

    错误代码:

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4     <meta charset="utf-8">
     5     <title></title>
     6     <style type="text/css">
     7     .foot{width: 100%; height: 30px; border: 1px solid #d2d2d2;}
     8     .foot .b{width:300px; margin: 3px auto;}
     9     .foot .b .button{display: inline-block;line-height: 20px; background-color: #900; padding: 3px 5px; margin-left: 10px;}
    10     </style>
    11 </head>
    12 <body>
    13 <div class="foot">
    14     <div class="b">
    15         <a href="" class="button">提交</a>
    16         <a href="" class="button">提交</a>
    17         <a href="" class="button">提交</a>
    18     </div>
    19 </div>
    20 </body>
    21 </html>

    后来修改如下

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
        .foot{width: 100%; height: 30px; border: 1px solid #d2d2d2; text-align: center;}
        .foot ul{display: inline; margin-left: -10px;}
        .foot ul li{display: inline-block; margin-left: 10px; line-height: 30px;}
        .foot ul li a{background-color: #900; color: #fff;line-height: 20px;padding: 3px 5px;}
        </style>
    </head>
    <body>
    <div class="foot">
        <ul>
            <li><a href="" class="button">提交</a></li>
            <li><a href="" class="button">提交</a></li>
            <li><a href="" class="button">提交</a></li>
            <li><a href="" class="button">提交</a></li>
        </ul>
        </div>
    </div>
    </body>
    </html>

    其实这些问题看上去很简单,单还是有很多初学者不能实现,很多人也行用javascript实现,其实完全没有必要

  • 相关阅读:
    想让进程后台运行,试试Linux的nohup命令,3分钟学会。
    面试官:你能说一下Redis的常见应用场景吗?
    面试被问MySQL 主从复制,怎么破?
    Spring Boot 解决跨域问题的 3 种方案!
    Kafka如果丢了消息,怎么处理的?
    惊呆,这样操作 Nginx 并发数就能达到3w?
    easyexcel 自动设置列宽(转)
    Ubuntu18.04自适应VMware调整桌面大小
    IDEA将maven项目打包时同时带上项目的maven依赖(转)
    python 定时框架APScheduler
  • 原文地址:https://www.cnblogs.com/tongchuanxing/p/4786702.html
Copyright © 2011-2022 走看看