Home Web Front-end HTML Tutorial 移动端优先策略下的css如何编写_html/css_WEB-ITnose

移动端优先策略下的css如何编写_html/css_WEB-ITnose

Jun 21, 2016 am 08:55 AM

移动互联网时代,如何开发一个响应式站点,是每一个前端人员必备的技能。通常,我们能意识到良好的设计对移动端开发的重要性,但是在代码层面很少讨论。

接下来,让我们搞清楚:

1,什么是移动端优先策略(小屏优先策略)

2,这种策略的样式如何编写。


 移动端优先策略VS桌面端优先策略


移动端优先策略:以适配移动端设备为首要目标进行设计开发,尽可能的适配桌面端大屏。

桌面端优先策略:以桌面端设备作为首要考虑目标,移动端放到次要位置考虑

这里就是一个主次关系的考虑。

在移动端优先策略下样式的编写,我们可以借用媒体查询来完成对于桌面端大屏设备的适配(例如min-width)。

举个例子:

// This applies from 0px to 600px

body { 

  background: red; 
}

// This applies from 600px onwards

@media (min-width: 600px) {

  body { 
    background: green; 
  }

}

这里,body在600px一下的宽度时,背景色为红色,而超过600px,就变为绿色了。

在桌面端优先的策略下,我们要这么写css:

// This applies from 600px onwards

body { 

  background: green; 
}


// This applies from 0px to 600px

@media (max-width: 600px) {

  body { 
    background: red; 
  }

}


为什么要采用移动端优先的策略?


相对于小屏幕,为了适配大屏幕,我们的css代码通常要复杂一些,所以移动端优先的策略有利于精简代码。


考虑如下场景:

一个站点有个如下布局,.Content在移动端占据100%,在桌面端占据60%

此时,对于小屏幕,我们可以借助属性的默认值为content区域添加样式,比如一个div,默认情况下,作为块级元素默认宽度为100%。

小屏优先策略下的sass代码:

.content {
  // Properties for smaller screens. 
  // Nothing is required here because we can use the default styles 

  // Properties for larger screens
  @media (min-width: 800px) {
    float: left; 
    width: 60%; 
  }

}

大屏优先策略下:

.content {
  // Properties for larger screens.
  float: left; 
  width: 60%; 

  // Properties for smaller screens. 
  // Note that we have to write two default properties to make the layout work
  @media (max-width: 800px) {
    float: none; 
    width: 100%; 
  }

}

看看,我们节省了2行代码,减少了点脑力消耗,想想,如果实在大项目中,这会有更大的益处吧。

移动端优先策略下,我们如何使用Max-width

当你想要将样式的应用目标限定在某一特定的视口宽度时,max-width就派上用场了,结合min-width的使用,还可以创造一个限定区间。

考虑一个缩略图展示页的布局:800px以下的视口宽度时,显示为3列,否则为4列

当这些缩略图之间没有间隙时,很简单:

.gallery__item {
  float: left; 
  width: 33.33%; 
  @media (min-width: 800px) {
    width: 25%; 
  }

}

实际情况下,通常是有间距的,情况就变的复杂了:

很容易想到如下的css:

.gallery__item {

  float: left; 
  width: 30.333%;
  margin-right 5%;
  margin-bottom: 5%;
  &:nth-child(3n) {
    margin-right: 0; 
  }

  @media (min-width: 800px) {
    width: 21.25%; // (100% - 15%) / 4
    &:nth-child (4n) {
      margin-right: 0; 
    }
  }

}

但是因为,我们设定了在每个第三项,margin-right为0,而当一行有4项时,应该是每个第四项为0,我们可以考虑通过重写的方式解决:

.gallery__item {
  // ...
  @media (min-width: 800px) {
    // ...
    &:nth-child (3n) {//恢复第三项的间距
      margin-right: 5%; 
    }
    &:nth-child(4n) {
      margin-right: 0%;
    }
  }

}

这个方式并不是太好,因为当我们需要在更大的屏幕上显示更多的项时,我们会遇到同样的问题。

考虑如下方式,把随视口变化的东西放到相应的查询语句中,默认样式只保留公共的部分,能减少重写带来的麻烦:

.gallery__item {
  float: left; 
  margin-right: 5%;
  margin-bottom: 5%;
  @media (max-width: 800px) {
    width: 30.333%;
    &:nth-child(3n) {
      margin-right: 0; 
    } 
  }

  @media (min-width: 800px) {
    width: 21.25%; // (100% - 15%) / 4
    &:nth-child (4n) {
      margin-right: 0; 
    }
  }

}



参考:  http://zellwk.com/blog/how-to-write-mobile-first-css/


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles