[css特效]A標記的經典效果:滑鼠放到A的整行上,背景變色(滑鼠沒在文字上)

來源:互聯網
上載者:User

這個效果經常會使用,本特效支援FF+IE

 

屬於CSS特效

 

給個

 

------------------------------------------

代碼如下:

<style type="text/css">
a.me{
display:block;
color:#006699;
width:auto;
}
a.me:hover {
background-color:#CCCCCC;
}
</style>

-------------------------------------------

<a href="http://www.pengpengblog.com" class="me">彭彭部落格</a>

 

裡面關鍵的就是width:auto; 如果沒有這個ff下正常 IE下是不好使得,估計是IE和FF的CSS預設值不一樣。

 

相關文章

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.