1

如何在输入字段内右对齐 JPEG 图像?

.input-field {  
    background: #fff url("../images/search.jpg") no-repeat; 
}

默认情况下,图像是左对齐的。

4

3 回答 3

3

加上“对”

.input-field {  
    background: #fff url("../images/search.jpg") no-repeat right; 
}

有关背景位置的更多信息:http: //www.w3schools.com/cssref/pr_background-position.asp

于 2013-09-03T22:31:51.557 回答
1

使用背景位置: http ://www.w3schools.com/cssref/pr_background-position.asp

.input-field {  
    background: #fff url("../images/search.jpg") no-repeat;
    background-position: right center;
}
于 2013-09-03T22:32:59.317 回答
1

您还可以以像素或百分比指定位置

背景位置:20px 中心;

于 2013-09-03T22:37:12.830 回答