跳转至

CSS


布局

{
    display: block;  /*块布局*/
    text-align: center;  /*内容剧中*/
    margin: 0 auto;  /*DIV剧中*/
    align-items: center;  /*水平对齐*/
}

float

浮动

{
    float: left;
}

block

块布局

{
    display: block; 
}

inline

行内布局

{
    display: inline;
}

flex

弹性布局

{
    display: flex;
}

grid

网格布局

{
    display: grid;
}

absolute

绝对定位布局

{
    position: absolute; 
    top: 10px; 
    left: 10px;
}

left


字体

{
    font-weight: bold;  /*加粗*/
    line-height: 35px;  /*文字上下距离*/
}