問題1-在項目中經常會設置border-bottom: 1px solid #e5e5e5;雖然這樣可以達到效果,但是在手機上看并不是1px的高度,可能是2px或者3px
解決方法如下:使用偽類after
.part1Box {
/*border-bottom: 1px solid #e5e5e5;*/
position: relative; // 不可省略
}
.part1Box::after{
content: '';
position: absolute;
bottom:0;
left:0;
width:100%;
height:1px;
background: #e5e5e5;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
問題2-設置placeholder的字體大小和顏色
解決方法如下:
.cardNumInput::-webkit-input-placeholder{
font-size: 16px;
color: #cacaca;
}