CSS 是一种描述 HTML 文档样式的语言。

CSS 描述应该如何显示 HTML 元素。CSS注释用于解释代码,以后在您编辑源代码时可能会有所帮助

浏览器会忽略注释。

位于 <style> 元素内的 CSS 注释,以 /* 开始,以 */ 结束:

1.内部样式

2.行内样式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Css基本语法</title>
    <style>
      h1{color: red;font-size: 60px;}
      em{font-size: 30px;}
      strong{font-size: 30px;}
    </style>
</head>
<body >
    <h1>将进酒</h1>
    <em></em> &nbsp;<strong>李白</strong>
    <hr>
<p> <div style="color: aqua;font-size:30px">君不见黄河之水天上来,奔流到海不复回。</div>  
    <div style="color: bisque;font-size: 30px;">君不见高堂明镜悲白发,朝如青丝暮成雪。</div> 
    <div style="color: chartreuse;font-size: 30px;">人生得意须尽欢,莫使金樽空对月。</div> 
    <div style="color: darkcyan;font-size: 30px;">天生我材必有用,千金散尽还复来。</div> 
    <div style="color: darkgrey;font-size: 30px;">烹羊宰牛且为乐,会须一饮三百杯。</div> 
    <div style="color: darkorchid;font-size: 30px;"> 岑夫子,丹丘生,将进酒,杯莫停。</div>  
    <div style="color: darkturquoise;font-size: 30px;"> 与君歌一曲,请君为我倾耳听。</div>
    <div style="color: firebrick;font-size: 30px;">钟鼓馔玉不足贵,但愿长醉不愿醒。</div> 
    <div style="color: gold;font-size: 30px;"> 古来圣贤皆寂寞,惟有饮者留其名。</div>
    <div style="color: greenyellow;font-size: 30px;">陈王昔时宴平乐,斗酒十千恣欢谑。</div> 
    <div style="color: hotpink;font-size: 30px;">主人何为言少钱,径须沽取对君酌。</div> 
    <div style="color: lawngreen;font-size: 30px;">五花马、千金裘,呼儿将出换美酒,与尔同销万古愁。</div>  
</p>





</body>
</html>