CSS每天一用

來源:互聯網
上載者:User

090209
1.設定高度應該這樣設定.
 height: 36px;
    line-height: 36px;
2.<!--<div style=" height:36px;"></div>div不設定高度,父級的高度會根據子級調整-->
3.div布局的一個技巧,比如圓解矩形,用兩張圖片,
  <div style="background:url(bgLeft.jpg) no-repeat 0 0;">
 <div style="background:url(bgRigth.jpg) no-repeat 0 0;">
   <div>在這裡設定高度,如果是需要位移的圖片,高度不可以大於要顯示的高度.</div>
 </div>
  </div>
  由於預設情況,div的寬度都是100%,實際上這兩個div是重疊的,看上去就像左邊一張圖片,右邊一張圖片.
  另外,這種情況一般用一張圖片,通過設定位移量,變為不同的背景. 

081215

  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.     <title>滑鼠移到圖片加邊框</title>
  5.     <style type="text/css">
  6.         .highlightit img{
  7.             border: 10px solid #ccc;
  8.         }
  9.         .highlightit:hover img{
  10.             border: 5px solid navy;
  11.         }
  12.         .highlightit:hover{
  13.             color: red; /* Dummy definition to overcome IE bug */
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18. <a href="/" class="highlightit"><img alt="美女" height="150px" width="150px" border="0" src="girl.gif" />文本變紅</a>
  19. <a href="/" class="highlightit"><img alt="美女" border="0" height="150px" src="girl.gif" width="150px" /></a>
  20. </body>
  21. </html>

end

相關文章

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.