如何按浏览器类型选择网页

时间:2013-05-10 13:03:31

标签: java html web

是否有办法根据浏览器类型从同一链接为用户提供基本HTML网页?具体来说,当通过桌面浏览器导航到www.mysite.com时,用户会看到一个大型网页,但从移动设备导航显示一个较小的网页。

2 个答案:

答案 0 :(得分:1)

Bootstrap Responsive Design将帮助您实现目标。

因此,如果您将引导程序库作为站点的一部分包含在内,则在HTML标记中添加一个类将使其表现如此。

<body>
   <div class="visible-desktop">
      Content for big screen here
   </div>

   <div class="visible-phone">
      Content for phones here
   <div>
</body

答案 1 :(得分:0)

您可以使用样式表来实现此目的。

屏幕仅显示在桌面上,而掌上电脑仅显示在移动设备上。

http://mobile.smashingmagazine.com/2010/11/03/how-to-build-a-mobile-website/#mobile-stylesheets