我使用<iframe>
在html页面上放置了一个强大的表单,但我希望它能在移动设备上全屏显示。到目前为止,我使用以下代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
@import url(http://fonts.googleapis.com/css?family=Londrina+Sketch);
body {
background-color: #f3eedd;
width: 750px;
overflow:scroll;
overflow-x:hidden;
}
h2 {
font-size: 20px;
color: #c13e18;
margin: 10px 30px 10px 30px;
}
</style>
</head>
<body>
<div id="header">
<h2>Book Supheroes Unite</h2>
</div>
<div id="form">
<iframe src="http://challenge-the-box.com/wp-admin/admin-ajax.php?action=frm_forms_preview&form=sbyrt02
" frameborder="0" scrolling="no" style="width:280px;height:535px;"></iframe></div>
</html>
我认为它与视口有关?但是,我对此并不完全确定!
答案 0 :(得分:17)
<meta name="viewport" content="width=device-width, initial-scale=1.0">
此元标记允许您定位移动设备并将宽度设置为屏幕大小。
提供的文件here!
还考虑迁移到引导响应式网页设计的CSS框架! Twitter Bootstrap
答案 1 :(得分:2)
就个人而言,我会使用像bootstrap这样的库来实现这样的功能。
<meta name="viewport" content="width=device-width, initial-scale=1">
Bootstrap允许您使用您的内容创建动态网格,无论设备大小如何。您只需在较大的容器内创建div,例如流体容器:
<div class="container-fluid">
<div class="row">
...
</div>
</div>
答案 2 :(得分:-2)
您可以使用media queries
!
看起来像这样:
@media (max-width: 640px) {
//your css to make it full screen
}