bootstrap怎么让内容居中
2016-11-17
展开全部
需要给元素添加 额外样式:
line-height: 100px; // 行高
vertical-align:middle; // 上下居中 [与行高成对出现]
text-align: center; // 左右居中
以下是一个完整例子,可以直接使用该代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="
<style>
.con {line-height: 100px; vertical-align: middle; text-align: center;}
.color1 { background: pink;}
.color2 { background: red; }
</style>
</head>
<body>
<div class="row box">
<div class="col-md-6 con color1">.col-md-6</div>
<div class="col-md-6 con color2">.col-md-6</div>
</div>
</body>
</html>
line-height: 100px; // 行高
vertical-align:middle; // 上下居中 [与行高成对出现]
text-align: center; // 左右居中
以下是一个完整例子,可以直接使用该代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="
<style>
.con {line-height: 100px; vertical-align: middle; text-align: center;}
.color1 { background: pink;}
.color2 { background: red; }
</style>
</head>
<body>
<div class="row box">
<div class="col-md-6 con color1">.col-md-6</div>
<div class="col-md-6 con color2">.col-md-6</div>
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询