如何修复我的输入与输入的文本重叠?

问题描述 投票:0回答:1

我的输入在顶部重叠了 1 或 2 个像素的文本。 将 SCSS 与 React.JS 结合使用

我该如何解决这个问题?

My input here

.find-input {
  color: white;
  width: 100%;
  box-sizing: border-box;
  background-color: #262B36;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  border: none;
  border-radius: 4px;
}

.find-input:focus {
  outline: 1px solid blue;
}
<div class="main">
  <input class="find-input" />
</div>

html css reactjs sass
1个回答
3
投票

尝试增加高度或减少顶部/底部填充。

查看您的 HTML 会有帮助...

© www.soinside.com 2019 - 2024. All rights reserved.