Closed haidubogdan closed 4 months ago
https://developer.mozilla.org/en-US/docs/Web/CSS/Comments
I thought you could only comment with /* */
<style>
// display: none;
/* display: none; */
display: none;
</style>
UPDATE:
The
/* */
comment syntax is used for both single and multiline comments. There is no other way to specify comments ...
Ah yes : )) I thought it's more permissive.