<!DOCTYPE html> <html> <head> <style> .block{ width:400px; height:400px; background-color: lightpink; } /* It is multiline comment and may be on more than one line.*/ </style> </head> <body> <div class="block"> You can see the comment in style tag that starts with /* and ends with */. </div> </body> </html>
Run
×
Share