我正在尝试将数据图标插入两个输入字段,但它们不断将我的输入字段向右移动,就像他们在其中添加一个边距一样。
我对图标使用 z-index:2 以使它们漂浮在字段上方并且它们确实如此,但添加的边距仍然存在。
这是我的CSS:
#loginBox input#username, #loginBox input#password {
height: 20px;
width: 120px;
padding: 5px 5px 5px 32px;
border: 1px solid rgb(178, 178, 178);
box-sizing : content-box;
border-radius: 3px;
box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
transition: all 0.2s linear;
}
#loginBox [data-icon]:before {
content: attr(data-icon);
font-family: FontomasCustomRegular;
color: #999;
position: relative;
left: 25px;
z-index: 2;
}
这是一个屏幕截图:
有什么想法吗?
谢谢。