我的平板电脑和ipad(迷你和空气)网站上的标题有问题。 菜单没有响应,只能在电脑和智能手机上使用
我在Bootply上尝试了它并且它有效:
答案 0 :(得分:0)
我使用的是Mobile_Detect.php
,这是检查设备的绝佳工具。
我还写了两个不同的样式表screen.css
和mobile.css
所以基本上它是这样的:
<? if($detect->isMobile()) { ?>
<link rel="stylesheet" href="<? echo $siteroot ?>css/mobile.css" type="text/css">
<? } else { ?>
<link rel="stylesheet" href="<? echo $siteroot ?>css/screen.css" type="text/css">
<? } ?>
它还支持平板电脑if($detect->isTablet())
答案 1 :(得分:0)
您面临的nav
width
问题缩小平板电脑屏幕的font-size
和padding
,然后它就会对齐。