input輸入框中有圖片怎麼使用css布局實現

來源:互聯網
上載者:User

現在很多的頁面為了美觀、形象,一般都會在使用者名稱,密碼等輸入框中加一個圖片,以便更形象的說明這個輸入框的用意。美工的一個小圖片,卻給前端帶來了很多麻煩,如何定位小圖片,並且相容各大瀏覽器(包括ie6)成了一個令人頭疼的問題。


比如上圖,具體的實現辦法如下

 

複製代碼代碼如下:
<div class="item-ifo">
<input type="text" id="loginname" name="loginname" class="text" tabindex="1" autocomplete="off"/>
<div class="i-name ico"></div>
</div>


 

複製代碼代碼如下:
.item-ifo {
position: relative;
width: 307px;
}
.item-ifo .ico {
width: 16px;
height: 16px;
position: absolute;
top: 8px;
right: 12px;
z-index: 5;
}
.item-ifo .pic{
background: url(i/one4.jpg) no-repeat #fff;
}


如上代碼就可以實現

外層item-ifo的樣式中設定 絕對/相對定位position:relation / absolute;

在ico中裡邊設定寬、高,是為了確保圖片能夠顯示出來,設定絕對位置absolute,使用top、left進行定位。

在pic裡將圖片的路徑寫明就可以了。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.