• # HTML && CSS 学习笔记


    https://www.zybuluo.com/denglongku/note/532786

    1.Div左右居中

    <div>1<div>
    
    div{
    width;300px;
    height:300px;
    margin:0 auto;
    }
    

    2.Div上下左右居中

    <div class='father'>
       <div class='son'></div>
    </div>
    
    .son{
    position:absolute;
    top:50%;
    left:50%;
    300px;
    heigeht:300px;
    margin-top:-150px; /*等于高度的一半*/
    margin-left:-150px; /*等于宽度的一半*/
    }
    

    3.背景图片上下左右居中

    background-position:center;
    

    4.边框变成小三角
    得到一个 宽为10px,黑色向下的小三角,背景色为红色

    div{
    0;
    height:0;
    border:10px solid red;
    border-top-color:black;
    }
    

    5.关于换行

    white-space:nowrap;/*不换行*/
    white-space:normal;/*换行*/
    

    6.关于margin-top的传递问题
    为其父元素加上边框,就可以解决

    7.清除默认样式

    body,h1,h2,h3,h4,h5,h6,dl,dd,p{marhon:0;}
    ul,ol{margin:0; padding:0;}
    th.td{padding:0;}
    

    8.表格

    <table border='1'>
    <thead><tr><th>sex</th><th>age</th></tr></thead>
    <tbody>
    <tr><td>man</td><td>18</td></tr>
    <tr><td>female</td><td>28</td></tr>
    </tbody>
    
    table{border-collapse:collapse;}
    跨行合并:rowspan;
    跨列合并:colspan;
    

    9.表单

    /*for和id相同*/
    <label for='username'>用户名</lable>
    <input type='text' id='username' value='Input your name'/>
    

    10.清除浮动

    .clearfix:after{
    display:block;
    content:'';
    clear:both;
    }
    .clearfix{
    zoom:1;  /* for IE6*/
    }
  • 相关阅读:
    Python3.4 多线程
    OSG Win7 + VS2015 编译
    OSG-3.4.0 简要说明(Readme)
    Boost 1.62.0 编译参数
    VS2015 + QT5.7 中文的坑
    C++库编译
    osg学习笔记3 简单几何模型
    Sqlserver 创建账号
    nginx检查报错:nginx: [emerg] "server" directive is not allowed here in
    Linux修改挂载目录名称
  • 原文地址:https://www.cnblogs.com/wuxiumei/p/5964415.html
Copyright © 2020-2023  润新知