搜索

首页  >  问答  >  正文

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

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

.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>

P粉141035089P粉141035089301 天前425

全部回复(1)我来回复

  • P粉002546490

    P粉0025464902024-01-30 00:06:51

    尝试增加高度或减少顶部/底部内边距。

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

    回复
    0
  • 取消回复