問題:
可能原因:
空間不足塞下字跟放大鏡
原始程式:
位置:https://rich.yda.gov.tw/rich/lib/css/component.css :2
.search input[type='text'] {
border: 1px solid rgb(204,204,204);
border-image: none;
height: 50px;
color: rgb(51, 51, 51);
margin-top: 3px;
margin-bottom: 3px;
background-color: rgb(255, 255, 255);
width: 100%;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 20px;
font-size: 1em;
}
建議修改:
左邊的padding小一點,空出多一點空間
.search input[type='text'] {
border: 1px solid rgb(204,204,204);
border-image: none;
height: 50px;
color: rgb(51, 51, 51);
margin-top: 3px;
margin-bottom: 3px;
background-color: rgb(255, 255, 255);
width: 100%;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 8px;
font-size: 1em;
}
補充: