• bootstrap框架----像素


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <link rel="stylesheet" href="css/bootstrap.css">
    <style>
    div[class*='col-']{ background:#66; border:2px solid #000000;  height:50px; background:#006; color:#FFF;}
    </style>
    </head>
    
    <body>
    <div class="container">
    <div class="row">
         <div class="col-lg-4">col-lg-4适应1200像素 1200下则充填</div>
         <div class="col-lg-4">col-lg-4适应1200像素 1200下则充填</div>
          <div class="col-lg-4">col-lg-4适应1200像素 1200下则充填</div>
    </div>
    <div class="row">
         <div class="col-md-4">col-md-4适应960像素 960下则充填</div>
         <div class="col-md-4">col-md-4适应960像素 960下则充填</div>
         <div class="col-md-4">col-md-4适应960像素 960下则充填</div>
      </div>
     <div class="row">
         <div class="col-sm-4">col-sm-4适应768像素 768下则充填</div>
         <div class="col-sm-4">col-sm-4适应768像素 768下则充填</div>
         <div class="col-sm-4">col-sm-4适应768像素 768下则充填</div>
      </div>
      <div class="row">
         <div class="col-xs-4">col-xs-4不充填</div>
         <div class="col-xs-4">col-xs-4不充填</div>
         <div class="col-xs-4">col-xs-4不充填</div>
       </div>
        <div class="row">
         <div class="col-lg-4 col-md-6">col-lg-4 col-md-6低于md960像素则充填</div>
         <div class="col-lg-4 col-md-6">col-lg-4 col-md-6低于md960像素则充填</div>
          <div class="col-lg-4 col-md-6">col-lg-4 col-md-6低于md960像素则充填</div>
         </div>
    </body>
    <script src="js/bootstrap.js"></script>
    <script src="js/jquery-1.11.1.js"></script>
    </html>

    -------------------------简单的图片框架加字体

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <link rel="stylesheet" href="css/bootstrap.css">
    <style>
    div[class*='col-']{ background:#66; border:2px solid #000000;  height:50px; background:#006; color:#FFF;}
    </style>
    </head>
    
    <body>
    <div class="container">
    <div class="row">
         <div class="col-lg-3 col-md-4 col-sm-6">
         <div class="thumbnail">
         <img src="img/codeguide.png">
         <div class="caption">
         <h3>Bootstrap 编码规范</h3>
                        <p>Bootstrap 编码规范:编写灵活、稳定、高质量的 HTML 和 CSS 代码的规范。 </p>
         </div>
         </div>
        </div>
         <div class="col-lg-3 col-md-4 col-sm-6">
         <div class="thumbnail">
         <img src="img/codeguide.png">
         <div class="caption">
         <h3>Bootstrap 编码规范</h3>
                        <p>Bootstrap 编码规范:编写灵活、稳定、高质量的 HTML 和 CSS 代码的规范。 </p>
         </div>
        </div>
    </div>
         <div class="col-lg-3 col-md-4 col-sm-6">
         <div class="thumbnail">
         <img src="img/codeguide.png">
         <div class="caption">
         <h3>Bootstrap 编码规范</h3>
                        <p>Bootstrap 编码规范:编写灵活、稳定、高质量的 HTML 和 CSS 代码的规范。 </p>
         </div>
        </div>
    </div>
         <div class="col-lg-3 col-md-4 col-sm-6">
         <div class="thumbnail">
         <img src="img/codeguide.png">
         <div class="caption">
         <h3>Bootstrap 编码规范</h3>
                        <p>Bootstrap 编码规范:编写灵活、稳定、高质量的 HTML 和 CSS 代码的规范。 </p>
         </div>
        </div>
    </div>
    
    </div>
    </body>
    <script src="js/bootstrap.js"></script>
    <script src="js/jquery-1.11.1.js"></script>
    </html>
  • 相关阅读:
    多种方法求解八数码问题
    GridView编辑删除操作
    【翻译自mos文章】v$undostat视图没有依照每10分钟进行更新,v$undostat仅仅有1行(one rows)
    支持向量机通俗导论(理解SVM的三层境地)
    bootstrap课程13 bootstrap的官方文档中有一些控件的使用有bug,如何解决这个问题
    bootstrap课程12 滚动监听如何实现(bootstrap方式和自定义方式)
    bootstrap课程11 模态框如何使用
    bootstrap课程10 从外部引入视频到页面用什么标签
    bootstrap课程9 bootstrap如何实现动画加载进度条的效果
    bootstrap课程8 bootstrap导航条在不同设备上的显示效果如何
  • 原文地址:https://www.cnblogs.com/hack-ing/p/5891295.html
Copyright © 2020-2023  润新知