When working on CSS in Visual Studio Code, I encountered an issue where I need to comment out multiple lines of property:value code separately. For instance:
Before:
body {
width: 0px;
height: 0px;
color: red;
}
After highlighting the width, height, and color lines and using Ctrl+/ to auto-comment, VS Code combines all lines into one comment block like this:
body {
/* width: 0px;
height: 0px;
color: red; */
}
What I actually desire is the following format:
body {
/* width: 0px; */
/* height: 0px; */
/* color: red; */
}
Any suggestions on how to achieve this desired result?