zoukankan      html  css  js  c++  java
  • 居中样式

    每次都要纠结半天,这个居中。

    一、子元素不固定

    1   .pro-car-inner{//子元素

    max-1000px;

    color:#fff;

    position:absolute;

    top:150px; left:0;

    bottom:0; right:0;

    margin:auto;
                 }//这种无法垂直居中  都兼容

     2.

      .pro-car-con{height:500px;100%; justify-content:center;align-items:center;display:flex;}  //IE无法兼容

    3  .sol-main {//父元素
       height: 500px;
        100%;
       -webkit-box-align: center;
       -webkit-box-pack: center
       display: -webkit-box;
       text-align: center;//无法兼容ie
  • 相关阅读:
    c++ 中bool 的默认值
    cocos2d CCLOG格式符号表
    c++数组指针bug
    cocos2d-x-2.2.6创建工程
    Nape实现坐标旋转角度回弹
    haxe 中使用音效
    haxe 嵌入swf 读取里面的内容
    haxe 配置
    Spring Tool Suite(STS)基本安装配置
    git提交忽略文件.gitignore内容
  • 原文地址:https://www.cnblogs.com/cindy-hmy/p/6599918.html
Copyright © 2011-2022 走看看