HTML Comments: by Sri Sakthi.K 21CCU053 HTML
HTML Comments: by Sri Sakthi.K 21CCU053 HTML
By
SRI SAKTHI.K
21CCU053
HTML
HTML COMMENTS TAG
Commenting in CSS is just the same as in PHP. We can use // for single
line comments or /* …. */ for multiline comments.
.myclass {
width: 100%;
//height: 100px;
background: blue;
}