继承人我的问题如何让我的标题看起来更好
以下是编码...... !!
1 Index.php
<div class="header">
<div class="headerFont"><a href="index.php">Yo! Yo! Honey Singh..!!</a>
</div>
<div class="Login">
<form>
Email :<input type="text">
Password :<input type="password">
<input type="submit" value="Login" >
<input type="button" value="register">
</form>
</div>
</div>
2 Web-Style.css
.header{
top:0;
left:0;
padding:10px;
background:#00688B;
width:100%;
height:footer-<length>;
box-shadow:2px 2x 5px #08298A;
border:1px solid black;
text-shadow:2px 2px black;
}
.header a{
color:white;
}
.headerFont{
font-family:MATURA MT ;
font-size:22px;
display:table-cell;
}
.Login{
display:block;
position:absolute;
top:15px;
right:50px;
}
3 Mobile-Style.css
.header {
width: auto;
}
现在我需要知道如何获得像网站[PIC] - &gt;这样的按钮; http://i.stack.imgur.com/vlx09.png 如何在移动设备上显示按钮,而不是在个人电脑上显示按钮.. ???
答案 0 :(得分:1)
此处有更多详情:
答案 1 :(得分:-1)
您可以使用javascript并检查请求浏览器的类型来执行此操作。
您可以使用以下javascript检测移动broswer的请求。
if ((screen.width < 480) || (screen.height < 480)) {
location.replace('/mobile/');
/*Get buggon element by id and show it else hide it*/
}
或者您可以使用以下javascript来锁定移动浏览器,然后隐藏按钮。