偏移引导程序列
使用偏移量可以拉开列之间的距离。若要在大显示屏上使用偏移量,请使用 .col-md-offset-* 类。
可以尝试运行以下代码,了解如何在 Bootstrap 中使用偏移量列 −
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "box"> <h1>Heading One</h1> <div class = "row" > <div class = "col-xs-6 col-md-offset-3" style = "background-color: #dedef8; box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;"> <p>This is demo text. This is demo text.</p> </div> </div> </div> </body> </html>
广告