我需要創建一個html頁面。在這個html頁面中,我需要一個帶有<input type="text "/>
的圖像。該輸入位於圖像的中間;此輸入類型文本在右側輸入中也有「搜索」圖標。將輸入類型文本放在圖像的中心
我試圖建立這樣的代碼:
<html>
<img src="./home/image.jpeg">
<input type="text" name="food" placeholder="insert the food">
</input> <!-- this input has the icon search on the right-->
</img>
<html>
顯然,這是行不通的。有沒有一個好的方法來使它工作?
使用CSS背景圖像? –