Visual Studio代码中的CSS - 选择多行并分别对选择内的每一行进行注释

时间:2018-02-14 07:07:35

标签: css visual-studio-code comments

在Visual Studio代码中处理CSS我想选择多行属性:值代码并单独注释掉它们。例如

在:

body {
width: 0px;
height: 0px;
color: red;
}

在突出显示宽度,高度和颜色线并使用Ctrl + /应用自动注释后,VS Code的默认行为是将所有行包含为一条注释:

body {
/* width: 0px;
height: 0px;
color: red; */
}

我希望:

body {
/* width: 0px; */
/* height: 0px; */
/* color: red; */
}

如何做到这一点?

2 个答案:

答案 0 :(得分:0)

你的意思是:

enter image description here

您按住alt并将光标放在多行上,CTRL+C发表评论..

答案 1 :(得分:0)

按住Alt键并选择要注释的行/多行,然后按“ Alt + Shift + A”。这将阻止注释所选部分。您可以使用此方法仅注释部分代码。