两个input如何中间没有间隙且局中,在vscode 中输入
时间: 2024-03-09 19:50:34 浏览: 110
js限制input标签中只能输入中文
在 VS Code 中输入两个 input 并让它们居中且没有间隙,您可以使用以下代码片段:
```html
<div style="display: flex; justify-content: center;">
<input type="text" placeholder="Input 1" style="margin-right: 10px;">
<input type="text" placeholder="Input 2">
</div>
```
这将创建一个包含两个输入框的 div,使用 flex 布局使其居中,并使用 margin-right 属性为第一个输入框添加一些间距。您可以根据需要调整 margin-right 的值来控制两个输入框之间的间距。
阅读全文