我的輸入在頂部重疊了 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>
嘗試增加高度或減少頂部/底部內邊距。
查看您的 HTML 會有幫助...