gpt4 book ai didi

html - 引导列未在 div 的中心排列

转载 作者:行者123 更新时间:2023-11-28 15:20:12 24 4
gpt4 key购买 nike

我的问题很简单,我的 Bootstrap 列没有在 div 的中间排列。

看看我的代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
<style type="text/css"></style>
</head>
<body>
<div id="boxes">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div id="box1">
Hello
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div id="box2">
World
</div>
</div>
</div>
</body>
</html>


#boxes {
margin: 0 auto;
width: 100%;
max-width: 1000px;
height: 600px;
background-color: rgba(79, 27, 184, 0.29);
}
#box1 {
width: 400px;
height: 260px;
border-radius: 10px;
background-color: rgba(37, 100, 165, 0.80);
border: 1px solid rgba(37, 100, 165, 0.80);
margin-top: 50px;
text-align: center;
}

#box2 {
width: 400px;
height: 260px;
border-radius: 10px;
background-color: rgba(37, 100, 165, 0.80);
border: 1px solid rgba(37, 100, 165, 0.80);
margin-top: 50px;
text-align: center;
}

我将 col-lg 放在 6 上,这应该是每个框的 div 的 50%。但是这些盒子显然不在它们的列的中心。对此有任何帮助,我们将不胜感激。谢谢。

最佳答案

如果您像这样更改 box2 中的边距,这就是您想要的吗?

#box2 {    
margin: 50px auto 0 auto;
}

关于html - 引导列未在 div 的中心排列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46321402/

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