如何在输入字段内右对齐 JPEG 图像?
.input-field {
background: #fff url("../images/search.jpg") no-repeat;
}
默认情况下,图像是左对齐的。
加上“对”
.input-field {
background: #fff url("../images/search.jpg") no-repeat right;
}
有关背景位置的更多信息:http: //www.w3schools.com/cssref/pr_background-position.asp
使用背景位置: http ://www.w3schools.com/cssref/pr_background-position.asp
.input-field {
background: #fff url("../images/search.jpg") no-repeat;
background-position: right center;
}
您还可以以像素或百分比指定位置
背景位置:20px 中心;