【代码笔记】Web-CSS-CSS Text(文本),web-css-csstext分享


一,效果图。

 

【代码笔记】Web-CSS-CSS Text(文本),web-css-csstext

二,代码。

 

 

【代码笔记】Web-CSS-CSS Text(文本),web-css-csstext

<!DOCTYPE html> <html>  <head>     <meta charset="utf-8">     <title>CSS Test(文本)</title>     <style>     body {         color: red     }          h1 {         color: #00ff00;         text-align: center;         /*加上上划线*/         text-decoration: overline;         /*全变成大写*/         text-transform: uppercase;         /*文本的第一行缩进*/         text-indent: 50px;     }          p.ex {         color: rgb(0, 0, 255);         text-align: right;         /*加上下划线*/         text-decoration: line-through;         /*全变成小写*/         text-transform: lowercase;     }          <p {         text-align: justify;         /*加上下划线*/         text-decoration: underline;         /*首字母大写*/         text-transform: capitalize;     }          a {         /*去掉链接的下划线*/         text-decoration: none;     }     </style> </head>  <body>     <h1>This is heading </h1>     <p>This is an ordinary paragraph.</p>     <p class="ex">This is a praagraph with clss="ex".</p>     <p>Link to:<a href="https://www.w3cshool.cc">w3cshool.cc</a></p> </body>  </html>

【代码笔记】Web-CSS-CSS Text(文本),web-css-csstext

 

参考资料:《菜鸟教程》

www.dengb.comtruehttps://www.dengb.com/HTML_CSS/1333055.htmlTechArticle【代码笔记】Web-CSS-CSS Text(文本),web-css-csstext 一,效果图。 二,代码。 ! DOCTYPE html html head meta charset =”utf-8″ title CSS Test(文本) / title st…

—-想了解更多的css相关样式处理怎么解决关注<计算机技术网(www.ctvol.com)!!>

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/csstutorial/108938.html

(0)
上一篇 2020年5月4日
下一篇 2020年5月4日

精彩推荐