css学习の第二弹—文字格式化排版

时间:2022-07-01 16:04:47
1.css格式化排版 》》字体设计: etc:body{font-family:"Microsoft Yahei";} 》》字号,颜色: etc:body{font-size:12px;color:#666} *****注释:#666(灰色) 》》粗体 etc:p span{font-weight:bold;} 》》斜体 etc:p{font-style:italic;} 》》下划线 etc:p a{text-decoration:underline;} 》》删除线 etc:.oldPrice{text-decoration:line-through;} 》》段落排版_缩进 etc:p{text-indent:2em;} *****注意:2em的意思就是文字的2倍大小。 》》段落排版_行间距 etc:p{line-height:1.5em;} 》》段落排版_中文字间距 etc:h1{   letter-spacing:50px; } 》》块状元素居中 h1{   text-align:center; } 》》块状元素向左对齐 h1{   text-align:left; } 》》块状元素向右对齐 h1{   text-align:right; }