WDD 130: Web Fundamentals

HTML and CSS: Programming Comments

Overview

Comments written in code by developers provide a mechanism to help explain the purpose and function of that code.The code will need to be maintained and will change. Comments can be used while developing code to provide reminders or 'to do' lists or notes of improvement opportunities. Comments are not processed nor displayed to the user in the rendered document in HTML and CSS. Comments may be placed in any available white space.

"A CSS comment is used to add explanatory notes to the code or to prevent the browser from interpreting specific parts of the style sheet. By design, comments have no effect on the layout of a document. Comments can be placed wherever white space is allowed within a style sheet. They can be used on a single line, or traverse multiple lines." - MDN

Prepare

HTML Comment Example
<!-- This is a comment -->
CSS Comment Example
/* This is a comment */

Feel free to use comments as needed in your learning activities and assignments to remind you of things that you want to reference or document for future use. Those comments are for you, however, remember that organizations may have comment requirements given many developers might work on a project over its lifetime.

Code comments may even be snippets of code.

The concept of a comment is used even in your git commits which again, are especially useful to track history and to give context to your commits to your dev team.

Activity Instructions

  1. Open up any HTML or CSS document in VS Code.
  2. Use ctrl+/ (⌘+/) to comment out the line of code where you cursor is currently located or lines of code that you have selected.
  3. Pressing ctrl+/ again will toggle the commented out line(s) of code.

Optional Resources