1

在此处输入图像描述

这是我的问题我怎样才能让我的标题看起来更好

以下是编码...!

1 索引.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 网页样式.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 移动风格.css

.header {
 width: auto;
}

现在我需要知道如何获得像网站[PIC] -> http://i.stack.imgur.com/vlx09.png这样的 按钮我如何使按钮在移动设备上可见但在 PC borwsers 上不可见 ..? ?

4

2 回答 2

1
  1. 在网站的移动版本上创建您想要的按钮。
  2. 添加使按钮不可见的 CSS(例如,显示:无)。
  3. 使用带有媒体查询的 CSS 在移动设备上显示按钮。

更多细节在这里:

http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/

于 2012-12-29T16:43:52.260 回答
-1

you can do this using javascript and checking the requesting browser's type.

You can detect mobile broswer's request using javascript like following.

if ((screen.width < 480) || (screen.height < 480)) {
    location.replace('/mobile/');
   /*Get buggon element by id and show it else hide it*/
  }

or may be you can use following javascript to detent mobile browser and then hide the button.

https://github.com/miohtama/detectmobile.js

于 2012-12-29T11:05:14.633 回答