字体属性和文本属性

Posted p-z-w

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字体属性和文本属性相关的知识,希望对你有一定的参考价值。

1、让浮动的盒子居中

如果盒子居中:margin:0 auto;如果盒子浮动了,margin:0 auto;就不起任何作用
让浮动的盒子居中
    给浮动盒子加一个父盒子,设置宽度跟浮动盒子一样大小,并且overflow:hidden;设置该盒子margin:0 auto
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        *
            padding: 0;
            margin: 0;
        
        .box
            width: 400px;
            height: 300px;
            background-color: red;
        
        .main
            width: 100px;
            overflow: hidden;
            margin: 0 auto;
        
        .child
            width: 100px;
            height: 100px;
            background-color: green;
            margin: 0 auto;
            float: left;
        
    </style>
</head>
<body>
    <div class="box">
        <div class="main">
            <div class="child">
            
            </div>
        </div>
    </div>
    
</body>
</html>

2、文本属性

文本水平居中:text-align:center(中心对齐),justify(两端对齐)
文本垂直居中:行高=盒子高度 line-height
文本首行缩进:text-indent:1em(表示和当前字体大小一样)
字体大小:font-size:16px
字体系列:font-family:"微软雅黑"
文本修饰:
    text-decoration:规定文本修饰的样式
    none(默认),underline(下划线),overline(文本上一条线),line-through(穿过文本下的一条线),inherit(继承父元素的值)
font属性能够将font-size、line-height、font-family合三为一:font:12px/30px "微软雅黑","SimSun"

 

以上是关于字体属性和文本属性的主要内容,如果未能解决你的问题,请参考以下文章

17-文本属性和字体属性

文本属性和字体属性

文本属性和字体属性

17-文本属性和字体属性

17-文本属性和字体属性

九CSS字体属性与文本属性