CSS 注釋

2020-08-10 09:30 更新

CSS 注釋

注釋用于解釋您的代碼,它們被瀏覽器忽略。

CSS注釋以“ /* ”開頭,以“ */ ”結(jié)尾,例如:

/*This is a comment*/
p{
   color:red;
   text-align:center;
}

例子

以下代碼在html文檔中使用CSS注釋。

<!DOCTYPE HTML> 
<html> 
    <head> 
        <style type="text/css"> 
        /*This is a comment*/
        p{
           color:red;
           text-align:center;
        }
        </style> 
    </head> 
    <body> 
        <p>Visit the website</p> 
    </body> 
</html>

例2

我們甚至可以在聲明中使用注釋。

<!DOCTYPE HTML> 
<html> 
    <head> 
        <style type="text/css"> 
        /*p{
           color:red;
           text-align:center;
        }*/
        </style> 
    </head> 
    <body> 
        <p>Visit the website</p> 
    </body> 
</html>


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)