常用的应用文本的CSS样式

5年以前  |  阅读数:423 次  |  编程语言:HTML/CSS 

属性说明

示例代码

<head>
<meta charset="utf-8">
<title>常用文本样式</title>
<style type="text/css">
div{
    font-size: 30px;
    font-family: 'Microsoft Yahei';
    font-style: italic;
    text-indent: 60px;
}

em{
    font-style: normal;
    color: gold;
}

span{
    font-weight: bold;
    line-height: 80px;
    text-decoration: underline;

}

a{
    text-decoration: none;  /*去掉a链接的下划线*/
    text-align: center;   /*没效果,a标签的宽带只有文字宽带*/
}

p{
    text-align: center;
}
</style>
</head>

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8