bootstrap怎么让表单居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap怎么让表单居中相关的知识,希望对你有一定的参考价值。
参考技术A 置如下样式是可以使表格内容居中的,没有居中的原因可能是你还设置了其他的样式(把这个样式覆盖了):.table th, .table td
text-align: center;
height:38px;
你可以新建一个单独的html文件复制如下代码来测试一下:
<!DOCTYPE html>
<html>
<head>
<title>
Bootstrap Table
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="http://cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap.min.css"
rel="stylesheet">
<style>
.table th, .table td
text-align: center;
height:38px;
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-10">
<h1>
表格(内容居中)
</h1>
<table class="table" >
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.2.0/bootstrap.min.js"></script>
</body>
</html>本回答被提问者采纳
bootstrap 的栅格怎么让里面的文字居中显示...
我左边的col-md-6是图片.右边的col-md-6是文字...
但是文字是向上对齐的..我要居中对齐怎么搞..
不要用margin或者padding..
就是要从中间开始显示文字
.text-centertext-align:center 参考技术C text-align:center; 参考技术D
需要给元素添加 额外样式:
vertical-align:middle; // 上下居中 [与行高成对出现]
text-align: center; // 左右居中
以下是一个完整例子,可以直接使用该代码:
<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>本回答被提问者和网友采纳
以上是关于bootstrap怎么让表单居中的主要内容,如果未能解决你的问题,请参考以下文章