在 Bootstrap 中偏移列


偏移用于增加列的间距。要在大型显示屏上使用偏移,请使用 .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>

更新于: 2020 年 6 月 12 日

6,000+ 次浏览

开启你的职业生涯

完成课程获得认证

开始
广告