css - 03文本修饰
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>文本修饰</title> </head> <style> /*阴影*/ /*article {*/ /* font-size: 20px;*/ /*}*/ /*div {*/ /* !*color: #41B8FF;*!*/ /* font-weight: bold;*/ /* font-size: 2em;*/ /* text-shadow: #41B8FF 5px 3px 2px;*/ /*}*/ /*换行*/ /*div {*/ /* width: 100px;*/ /* border: solid 1px #ddd;*/ /* white-space: nowrap;*/ /* overflow: hidden;*/ /* text-overflow: ellipsis;*/ /*}*/ </style> <body> <!--阴影--> <!--<article>--> <!-- <div> 学好go语言 </div>--> <!--</article>--> <!--换行--> <!--<div>学好go语言贵在坚持</div>--> </body> </html>