媒體查詢的用法

來源:互聯網
上載者:User

標籤:

@media all and (min-width:840px)  //所有最小水平螢幕寬度為800像素的螢幕應用規則@media (min-width:800px)              //簡寫方式,同上@media (min-width:800px) and (max-width:1200px)    //所有介於800px和1200px之間的螢幕應用規則@media (min-width:800px) or (orentation:portrait)         //寬度至少是800px或方向是縱向的,則會應用該規則@media (not min-width:800px)        //當最小寬度不是800px時 ,則會用此規則@media (width:800px) and (height:400px)         //當螢幕正好是800px寬,400px高時應用規則@media (min-width:700px),handheld and (orentation:landscape)    //最小寬度為700px或是橫屏的手持功能上,同時應用樣式

  媒體查詢應用方式有兩種:

1、link元素中的css媒體查詢

<link rel="stylesheet" media="(max-width:800px)" href="eg.css" />

2、樣式表中的css媒體查詢

@media (max-width:600px){  .div1{         display:none;    }  }

媒體查詢的最佳實務:

小螢幕(平板,大於等於768px)

@media (min-width:768px){......}

 中等螢幕(案頭顯示器,大於等於992px)

@media (min-width:992px){......}

大螢幕(大案頭顯示器,大於等於1200px)

@media (min-width:1200px){......}

 

媒體查詢的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.