CSS偽類的又一個小應用,實現下拉式功能表

來源:互聯網
上載者:User

實現思路:

菜單包含在一個div中,div的高度為30px,菜單長度為120px。設定div的overflow為hidden。

這樣菜單的剩餘90px的內容被隱藏了。

當hover的時候,把div的overflow值設為visible。這樣,剩餘的90px內容就可見。

示範代碼如下:

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4.     <style type="text/css"> 
  5.         .tdiv  
  6.         {  
  7.             width: 100px;  
  8.             height: 30px;  
  9.             overflow: hidden;  
  10.             text-align: center;  
  11.             background: red;  
  12.         }  
  13.         .tdiv:hover  
  14.         {  
  15.             overflow: visible;  
  16.               
  17.         }  
  18.     </style> 
  19. </head> 
  20. <body> 
  21.     <div class="tdiv"> 
  22.         <div style="width: 100px; height: 30px; background: green; text-align: center;"> 
  23.             Menu1</div> 
  24.         <div style="width: 100px; height: 30px; background: green; text-align: center;"> 
  25.             Menu2</div> 
  26.         <div style="width: 100px; height: 30px; background: green; text-align: center;"> 
  27.             Menu3</div> 
  28.         <div style="width: 100px; height: 30px; background: green; text-align: center;"> 
  29.             Menu4</div> 
  30.     </div> 
  31. </body> 
  32. </html> 

 

本文出自 “一隻部落格” 部落格,請務必保留此出處http://cnn237111.blog.51cto.com/2359144/959338

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.