码迷,mamicode.com
首页 > Web开发 > 详细

css文本常用样式属性

时间:2020-11-10 11:13:27      阅读:18      评论:0      收藏:0      [点我收藏+]

标签:soft   loading   document   取消   span   scale   样式   ack   音乐   

技术图片

 

<!DOCTYPE html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        p{
            /* 设置文字颜色 */
            color: red;
            /* 设置文字大小 */
            font-size: 30px;
            /* 设置文字加粗 */
            font-weight: bold;
            /* 设置文字字体 */
            font-family: Microsoft Yahei;
            /* 设置字体背景色 */
            background: blue;
            /* 设置字体下划线 */
            text-decoration: underline ;
            /* 设置字体删除线 */
            text-decoration:line-through;
            /* 设置字体顶部线 */
            /* text-decoration: overline; */
            /* 设置文字行高 可以让文字垂直方向居中 */
            line-height: 100px;
            /* 设置水平方向的对齐方式 */
            text-align:left;
            /* 文本缩进 */
            text-indent: 30px;

        }
        span{
            color: green;
        }
        a{
            /* 取消下划线 */
            text-decoration: none;
        }
    </style>
</head>
<body>
    <!-- span标签可以给文本中的一小段内容设置样式 -->
    <p>听说下雨天音乐和<span>辣条</span>更配哟</p>
    <h1></h1>
    <a href="http://www.baidu.com">百度一下</a>
</body>
</html>

 

css文本常用样式属性

标签:soft   loading   document   取消   span   scale   样式   ack   音乐   

原文地址:https://www.cnblogs.com/fangkun/p/13950854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!