• css中关于居中的问题


    居中是最常用的一种css格式,不同的居中方法适和不同的环境中,下面总结了几种常用的居中方法,你可以不用它,但是无论你是一个资深前端大牛,还是小小初学者,当你见到它的时候不认识它就是你的不对啦!!!

    html部分

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8" />

    <title></title>

    </head>

    <body>

    <div id="box">

    <div id="son"> </div>

    </div>

    </body>

    </html>

     

    css部分

    第一种(是个程序员就认识的):

    <style type="text/css">

    *{margin: 0;padding: 0;}

    #box{

    width: 200px;

    height: 200px;

    background: red;

    }

    #son{

    width: 100px;

    height: 100px;

    background: green;

    margin: 50px; /*算好尺寸设置(最蠢也是最简单的)*/

    }

    </style>

     

    第二种:

    <style type="text/css">

    *{margin: 0;padding: 0;}

    #box{

    width: 200px;

    height: 200px;

    background: red;

    position: relative;

    }

    #son{

    width: 100px;

    height: 100px;

    background: green;

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    margin: auto;

    }

    </style>

    第三种:

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8" />

    <title></title>

    <style type="text/css">

    *{margin: 0;padding: 0;}

    #box{

    float: left;

    position: relative;

    left: 50%;

    }

    p{

    float: left;

    position: relative;

    right: 50%;

    }

    </style>

    </head>

    <body>

    <div id="box">

    <p>我是浮动的</p>

    <p>我也是居中的</p>

    </div>

    </body>

    </html>

     

    以上几种是在工作中遇到的几种居中情况,欢迎大家补充!!!

     

     

     

     

  • 相关阅读:
    TCP和UDP的一些区别: TCP提供可靠传输的机制:
    rpc和 http的区别
    熔断原理与实现Golang版
    源码解读 Golang 的 sync.Map 实现原理
    mysql底层为啥用b 树不用红黑树_MySQL索引底层数据结构
    一条sql 查询语句是如何执行的
    网络相关知识
    为什么遍历 Go map 是无序的?
    Go语言 参数传递究竟是值传递还是引用传递的问题分析
    解决goland debug 调试问题 Version of Delve is too old for this version of Go
  • 原文地址:https://www.cnblogs.com/sunweinan/p/6024697.html
Copyright © 2020-2023  润新知