在CSS中,可以使用background-image
屬性將圖片插入到輸入框中,以下是一個(gè)示例:
input[type="text"] { background-image: url("image.jpg"); background-repeat: no-repeat; background-position: right; }
上述代碼會(huì)將圖片image.jpg
插入到輸入框的右側(cè),且不會(huì)重復(fù)顯示,可以根據(jù)需要調(diào)整background-position
屬性來(lái)改變圖片的位置。
如果需要在輸入框中直接顯示圖片,可以使用object
或img
標(biāo)簽。
<input type="text"> <object data="image.jpg" width="200" height="200"></object> </input>
或者:
<input type="text"> <img src="image.jpg" alt="圖片描述" width="200" height="200"> </input>
上述代碼會(huì)在輸入框中直接顯示圖片image.jpg
,并根據(jù)需要設(shè)置圖片的寬度和高度,注意,使用object
或img
標(biāo)簽時(shí),需要確保圖片文件已被正確上傳并可以訪問(wèn)。