主版頁面中Css的屬性不顯示的情況

來源:互聯網
上載者:User
這裡寫下關於asp.net中Css屬性的設定的一些bug情況(沒有達到預期的效果),

  1. max-heigth、max-width、min-width、min-heigth
    如果外層容器設定了float,當容器載入動態內容時,這裡以min-heigth為例,
    <div>top</div>
    <div>content<div>dynamic</div></div>
    <div>foot</div>
  2. #content
    {
      min-height:300px;
    }
    #dynamic
    {
      float:left;
      min-height:300px;
    }

撐開內容後content的背景並不會被複製,正確的做法,定位用position:absolute or relative;

利用max和min的width和height來做簡單的圖片的放大效果。

         

<div class="demo"><a><img src="book.gif" alt="" /></a></div>
    .demo
    {
      min-width:100px;
    }
    .demo img
    {
      width:100px;
    }
    .demo a:hover img
    {
      width:auto;
    }

       發現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.