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>標籤的也跟著變色。

一般<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.