我在这段代码中有一些东西会让我的<input type = "text">
在Safari中显示出来,我不知道有什么能帮到我吗?
input[type="text"]{
border: 3px solid #eae9ef;
border-radius: 3px !important;
box-sizing: border-box !important;
background: rgba(255,255,255,0) !important;
padding:1.5em 1em !important;
}
问题是由于padding 1.5em 1em
,我该如何修复它,我需要填充以使输入框更大,但是随之而来的是我的文字消失了。
答案 0 :(得分:0)
为文本输入指定高度,而不是添加填充。填充将限制输入内的空间,因此文本不会显示。