在小屏下怎么让container中的表格100%显示
container中除了表格还有其他内容,其他的内容就限制在container中,然后想让表格100%全屏显示,设置了margin-left取消掉左边距,可是右边距却变大了,没有全屏显示
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<!--boots��֧��IE�ļ���ģʽ����IE�������µ���Ⱦģʽ*/-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, target-densitydpi=high-dpi" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="yes"/>
<!-- ����3��meta��ǩ*����*������ǰ�棬�κ��������ݶ�*����*������� -->
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/css/bootstrap.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container text-center">
<table border="1" cellspacing="0" bordercolor="#fff" width="100%" style="background-color:#0F6; margin-left:-15px; margin-right:-15px">
<tr>
<td style="width:50%">候诊人数<strong class="h3"> 4 </strong>人</td>
<td style="width:50%">预计等待时间<strong class="h3"> 40 </strong>分钟</td>
</tr>
</table>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然已经有采纳的答案了,我还是要来说下。
使用栅栏,还能去掉两边空白的方法:
这样设置后,各个栅格宽度还是相同的,因为 栅格 没有了 padding,每个栅栏的 宽度一致,显示的内容的宽度也一致,和 contrainer 的元素也能对齐(注意:这个后果也很严重,就是每个栅格之间的内容都连在一起了,在内部的栅格重新定义内边距和内容居中即可解决)。
具体的分析过程,可以查看我的博文(无耻的安利下):暴力修复 bootstrap.css 在手机端 滑动时右侧出现空白的问题