移动和桌面网页实施

时间:2018-02-01 23:14:41

标签: html css web mobile responsive

如何为桌面和移动浏览器创建具有单独设计的网站?

1 个答案:

答案 0 :(得分:0)

有两个主要选项:

  1. 自适应网页设计,通过media queries

    来自MDN

      

    响应式网络应用程序使用媒体查询和视口等技术来确保其UI适合任何形式因素:桌面设备,移动设备,平板电脑或其他任何内容。

  2. 通过user agent detection

    选择的
  3. 单独的移动版和桌面版

    MDN有some discussion of pros and cons of this approach