我想改变集成终端, CMDER我在Windows 8.1上使用Vscode我检查了文档和偏好文件,但我混淆了所以从下面这行将改变它
//外部终端
// Customizes which terminal to run on Windows.
"terminal.external.windowsExec": "%COMSPEC%",
// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "Terminal.app",
// Customizes which terminal to run on Linux.
"terminal.external.linuxExec": "xterm",
Run Code Online (Sandbox Code Playgroud)
//集成终端
// The path of the shell that the terminal uses on Linux.
"terminal.integrated.shell.linux": "sh",
// The command line arguments to use when on the Linux terminal.
"terminal.integrated.shellArgs.linux": [],
// The path of the shell that the terminal uses on OS X.
"terminal.integrated.shell.osx": …Run Code Online (Sandbox Code Playgroud) 如何通过cmd.exe/command prompt或command line interface在视觉工作室代码中安装扩展请为一些示例提供更好的清晰度和理解,以及如何更改集成终端,例如我有cmder我想改变它我已经看到了偏好文件但我感到困惑
我正在创建一个悬停效果
所以我有简单的文字回家,背景颜色是紫色
我想在文本之前添加边框,但效果没有显示出来
我正在使用::before那个
以下是我的代码
* {
margin: 0;
padding: 0;
}
.container::before {
border: 2px solid black;
}
.container {
background-color: purple;
color: white;
font-size: 50px;
width: 300px;
position: relative;
top: 50px;
left: 80px;
}Run Code Online (Sandbox Code Playgroud)
<div class="container">HOME</div>Run Code Online (Sandbox Code Playgroud)