考虑这个例子:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12" style="background-color: black;" >
<div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div>
<div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div>
</div>
</div>
</div>
</body>
</html>
为什么这两个div
不适合col?很简单,但它不起作用。
答案 0 :(得分:1)
您错过了使用Bootstraps网格布局的重点......
而不是:
setspn -a http/contoso.com mydomain\serviceaccount
setspn -a http/contoso mydomain\serviceaccount
也许你应该使用这样的东西:
<div class="col-xs-12" style="background-color: black;" >
<div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div>
<div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div>
</div>
答案 1 :(得分:0)
内联块略有余量。这就是为什么另一个区块将在下面。使用 float:left 代替
<div class="col-xs-12" style="background-color: black;">
<div style="width: 50%; height:20px; background-color: red;float:left"></div>
<div style="width: 50%; height:20px; background-color: red;float:left"></div>
</div>
如果您仍然需要内联块,请确保您的HTML div在代码中没有间隙(换行符)
<div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div><div style="width: 50%; height:20px; background-color: red;display: inline-block;"></div>
ENTER(换行符)是导致保证金的原因。
还有其他解决方案,例如注释空格或将font-size设置为0。
https://css-tricks.com/fighting-the-space-between-inline-block-elements/