国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Comments on CSS Basics Tutorial

CSS annotation

CSS annotation: /*CSS annotation content*/

Related knowledge

HTML comment: <!—HTML comment-->

Example

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
    <style type="text/css">
        h1{
            color:red;/*文本顏色*/
            border:1px solid black;/*邊框樣式*/
            text-align:center;/*對(duì)齊方式*/
            background-color:#666666;/*背景色*/
        }
    </style>
    </head>
    <body>
        <!--這是注釋字段-->
        <h1>歡迎加入php.cn</h1>
    </body>
</html>


Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <style type="text/css"> h1{ color:red;/*文本顏色*/ border:1px solid black;/*邊框樣式*/ text-align:center;/*對(duì)齊方式*/ background-color:#666666;/*背景色*/ } </style> </head> <body> <!--這是注釋字段--> <h1>歡迎加入php.cn</h1> </body> </html>
submitReset Code