滑鼠經過背景變色之CSS+DIV方法

來源:互聯網
上載者:User

   實現滑鼠經過背景變色的方法有很多,今天我們介紹的是用CSS+DIV實現的方法。

  方法一

  #div:hover{background:#000000;}

  解釋:滑鼠經過id為div的元素時背景變色

  IE6.0、Firefox2.0、Opera 9.23都不行

  方法二

  <div onmouseover="this.style.backgroundColor='#F4F9FD'" onmouseout="this.style.backgroundColor='#FFFFFF'"></div>

  方法三:

  <style>

.d_over{background-color:#307172;}
.d_out{background-color:#EFEFEF;}
</style>

<div class="d_out" onmouseover="this.className='d_over'" onmouseout="this.className='d_out'">哈哈哈哈哈</div>

   <a>的標籤是可以,可是,這樣子會導致其它帶有<a>標籤的也跟著變色。

  一般是用來定義連結的樣式的,並不是定義某個地區的。現在常用的div+css的網頁用,div就是表示地區的意思,還是喜歡用這種,當然用table的話,會有更簡單的方法。

  其實現在用的較多的是用<a>標籤實現的。

<style>
a {color:red; width:100px; height:22px; line-height:22px;}
a:hover {background:#f4f4f4; color:#000;}
</style>

        註:更多精彩文章請關注三連網頁設計教程欄目。

相關文章

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.