如何在样式表块中添加注释
可能需要在样式表块中添加其他注释。因此,对样式表的任何部分进行注释都非常简单。只需将注释放在 /*.....这是一个样式表注释.....*/ 内即可。
可以使用 /* ....*/ 注释多行块,类似于在 C 和 C++ 编程语言中的操作方式。
让我们看看如何添加注释
<!DOCTYPE html> <html> <head> <style> p { color: red; /* This is a single-line comment */ text-align: center; } /* This is a multi-line comment */ </style> </head> <body> <p>Hello World!</p> </body> </html>
广告