gpt4 book ai didi

html - 使列在 Bootstrap 中响应

转载 作者:行者123 更新时间:2023-11-28 08:15:07 25 4
gpt4 key购买 nike

出于实验目的,我编写了这样的基本代码:

<!doctype html>
<html lang='en'>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/bootstrap-theme.min.css">
<style type="text/css">
.pos {
position: relative;
}
.well1, .well2 {
position: relative;
height: 380px;
}
</style>
</head>
<body>
<div class="container pos">
<div class="col-sm-12">
<div class="well"></div>
</div>
<div class="col-sm-6">
<div class="well well1"></div>
</div>
<div class="col-sm-6">
<div class="well well2"></div>
</div>
<div class="col-sm-12">
<div class="well"></div>
</div>
</div>
</body>
</html>

这是输出:
img但同样的布局并没有出现在手机屏幕上。
我该如何解决?

最佳答案

在 Bootstrap 中,col-xx-x 类与特定的媒体查询相关。所以在这里,如果您希望 50% 的列在低于 767px 时保持 50%,则必须使用 col-xs-6 类。您的标记应如下所示:

<body>
<div class="container pos">
<div class="col-sm-12">
<div class="well"></div>
</div>
<div class="col-sm-6 col-xs-6">
<div class="well well1"></div>
</div>
<div class="col-sm-6 col-xs-6">
<div class="well well2"></div>
</div>
<div class="col-sm-12">
<div class="well"></div>
</div>
</div>
</body>

关于html - 使列在 Bootstrap 中响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29036616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com