流体布局容器
容器的width为auto,只是两边加了15px的padding。
流体布局容器
容器的width为auto,只是两边加了15px的padding。

<div class="container-fluid">

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<style type="text/css">
.container-fluid{
border: 1px solid;
height: 30px;
background: pink;
}
</style>
</head>
<body>
<!--流体容器 自适应-->
<div class="container-fluid">
container-fluid
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</html>
