嗨我有一个网页格式,在一个div行中有4个div列,我希望这样做 使用bootstrap响应更快......但是我喜欢列宽保持200px宽的静态并让它们只是"弹出"因为网页重新缩小了范围。 那可能吗 ?我已经尝试将class = columns重命名为class = col-md-3
然后尝试将div对包装在......标签中 尝试不满意
<html>
<head>
<style type="text/css">
* {margin: 0; padding: 3px;}
#container {height: 800%; width:900%; font-size: 10px;}
.columns,.spacer{display: inline-block; *display: inline; zoom: 0; vertical-align: top; font-size: 12px;}
.columns {background-color: white; width: 300px; height: 700px;}
.columns {box-shadow: 10px 10px 5px #888888;}
.spacer {background-color: transparent; width: 1px; height: 1px;}
.footerDIV {box-shadow: 10px 10px 5px #888888;}
.footerDIV {background-color: white; width: 620px; height: 100px;font-size: 12px;}
.spacerHorizontal {background-color: transparent; width: 10px; height: 10px; font-size: 12px;}
A{text-decoration:none}
</style>
<link href="./bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<script src="./bootstrap/js/bootstrap.min.js"></script>
<script src="./jquery.js"></script>
<script src="./jquery.corner.js"></script>
</head>
<body>
<div id="container">
<div class="row">
<div class="columns" id="Admissions" style='border-radius: 10px; background-repeat: no-repeat;'>1</div>
<div id=1spacer1 class=spacer style="background-color: #white; width: 3px; height: 4px;"></div>
<div class="columns" id="Headcount" style='border-radius: 10px; background-repeat: no-repeat;'>2</div>
<div id=2spacer1 class=spacer style="background-color: #white; width: 3px; height: 4px;"></div>
<div class="columns" id="Test1" style='border-radius: 10px; background-repeat: no-repeat;'>3</div>
<div id=3spacer1 class=spacer style="background-color: #white; width: 3px; height: 4px;"></div>
<div class="columns" id="Test2" style='border-radius: 10px; background-repeat: no-repeat;'>4</div>
<div id=4spacer1 class=spacer style="background-color: #white; width: 3px; height: 4px;"></div>
</div>
</body>
</html>
如何使这项工作的任何建议
答案 0 :(得分:2)
在div括号中添加width =“200”。我想这会起作用吗?