Comments > Multiple Lines

This describes the content as a whole.

Css

This is the rule for single link css comments.

/* This is cool */
.css {
	display: block;
}

Html

This is the rule for single link html comments.

<!-- Single linke html comment -->
<h1>This works right?</h1>

Javascript

This is the rule for single link javascript comments.

// This is a single link javascript comment
var line = "cool";

Php

This is the rule for single link php comments.

<?php 
// This is a single line quote.
?>

<?php echo $variable; ?>

Sass

This is the rule for single link sass comments.

/* Single line sass comment*/
.block {
	@extend .cool;
}