huangxuegang

你要悄悄学php,然后惊艳所有人
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

css之文本操作

Posted on 2020-08-01 17:02  一花多叶无菩提  阅读(87)  评论(0)    收藏  举报
    /**
            文本
         */
        h4{
            text-align:center;/*水平居中*/
            text-align: justify;/*每一行被展开为宽度相等,左,右外边距是对齐*/
        }
        h4 a{
            text-decoration: underline red;/*装饰文本*/
        }

        /*大小写转换*/
        h4 a {text-transform:uppercase;}
        h4 a.lowercase {text-transform:lowercase;}
        h4 a.capitalize {text-transform:capitalize;}
        /*文本缩进*/
        h4 a{text-indent:50px;}