如何在输入域内右对齐图像?

时间:2013-09-03 22:28:40

标签: html css

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

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

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

3 个答案:

答案 0 :(得分:3)

只需添加"对"

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

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

答案 1 :(得分:1)

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

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

答案 2 :(得分:1)

您还可以指定位置(以像素为单位)或百分比

background-position:20px center;