响应式框架Bootstrap栅格系统的实例


Posted in Javascript onDecember 19, 2017

实例如下:

<!DOCTYPE html>
<html>
<head lang="en">
 <meta charset="UTF-8">
 <title></title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" />
 <script language="JavaScript" src="js/jquery-3.js"></script>
 <style type="text/css">
  *{
   top: 0px;
   padding: 0px;
   text-decoration: none;
   list-style-type: none;
  }

  .top-styl{
   height: 50px;
   border: 1px solid red;
   background-color: #000000;
  }
  .img-styl{
   width: 174px;
   height: 50px;
   background: url("imges/logo.png")no-repeat 0px 3px;
   background-size: contain;
   float: left;
  }
  .sousuo-styl{
   width: 187px;
   float: left;
  }
  .top-search-input{
   width: 150px;
   padding: 0 5px;
   height: 30px;
   border: 0;
   background: #363636;
   float: left;
   color: #ccc;
  }
  .top-search-submit{
   width: 30px;
   height: 30px;
   border: 0;
   background: green url("imges/zoom.gif")center center no-repeat;
   float: left;
   cursor: pointer;



//光标指针
  }
  .dao-styll{
   float: left;
   font-size: 16px;
   width: 329px;
   margin-left: 33px;
   margin-top: 11px;

  }
  .dao-styll li{
   float: left;
   position: relative;


//相对定位
   text-align: center;
   padding: 0 7px;
  }
  .dao-styll >li:hover{
   background-color: #999;
  }
  .dao-styll >li >a{
   color: #FFF;
   width: 100%;
   height: 34px;
   text-decoration: none;

//取消下划线
  }
  .dz-styl{
   float: right;
   margin: -19px -9px 6px 21px;
  }
  .imgs-styl{
   padding: 11px 0px 0px 114px;
   float: right;
   margin: 0px -98px -3px 8px;
  }
  .green-styl{
   color: green;
  }
  .zc-styl{
   color: white;
  }
  a{
   text-decoration: none;
  }
 </style>
</head>
<body>
 <div class="container-fluid"> 




//fluid表示用 百分比
  <div class="row">






 //row 行
   <div class="top-styl col-md-12">



//col-md-12 每行桌面占12列
    <div class="row">
     <div class=" col-md-offset-1 col-md-9">
 //col-md-offset-1 列偏移1列
      <div class="row">
      <div class="col-md-3 col-xs-4">
       <div class="img-styl"></div>
      </div>
       <div class="col-md-3 ">
        <div class="sousuo-styl" style="padding-left: 7px; margin: 8px auto;">
         <input class="top-search-input" value="" type="text"><input
          class="top-search-submit" type="submit" value="" />
        </div>
       </div>
       <div class="col-md-4 hidden-xs" style="padding: 0px">
        <ul class="dao-styll">
         <li class=""><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >风格</a>
         </li>
         <li class=""><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >造型师</a></li>
         <li class=""><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >众分享</a>
         </li>
         <li class=""><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >我的美丽衣橱</a></li>
        </ul>
       </div>
       <div class="col-md-2">
        <div class="imgs-styl">
         <img src="imges/sina.gif">
        </div>
        <div class="dz-styl">
         <span><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="green-styl">登录</a> | </span><span>
         <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="zc-styl">注册</a></span>
        </div>
       </div>


      </div>
     </div>
    </div>
   </div>
  </div>

 <div class="row">
    <div class="visible-md"><h1>当前为桌面显示</h1></div>
 //visible默认占满整行 
    <div class="visible-sm"><h1>当前为平面显示</h1></div>
    <div class="visible-xs"><h1>当前为手机显示</h1></div>
  </div>
 </div>
</body>
</html>

效果显示图:

响应式框架Bootstrap栅格系统的实例

响应式框架Bootstrap栅格系统的实例

 响应式框架Bootstrap栅格系统的实例

以上这篇响应式框架Bootstrap栅格系统的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
jQuery Ajax之$.get()方法和$.post()方法
Oct 12 Javascript
js实现的二分查找算法实例
Jan 21 Javascript
jQuery获取父元素及父节点的方法小结
Apr 14 Javascript
javascript中的 object 和 function小结
Aug 14 Javascript
javascript 动态样式添加的简单实现
Oct 11 Javascript
jquery动态添加文本并获取值的方法
Oct 12 Javascript
jQuery事件与动画基础详解
Feb 23 Javascript
Bootstrap + AngularJS 实现简单的数据过滤字符查找功能
Jul 27 Javascript
axios全局请求参数设置,请求及返回拦截器的方法
Mar 05 Javascript
Vue组件之单向数据流的解决方法
Nov 10 Javascript
React性能优化系列之减少props改变的实现方法
Jan 17 Javascript
回顾Javascript React基础
Jun 15 Javascript
vue.js element-ui validate中代码不执行问题解决方法
Dec 18 #Javascript
AngularJs点击状态值改变背景色的实例
Dec 18 #Javascript
jQuery实现点击DIV同时点击CheckBox,并为DIV上背景色的实例
Dec 18 #jQuery
JS实现点击复选框变更DIV显示状态的示例代码
Dec 18 #Javascript
Vue下的国际化处理方法
Dec 18 #Javascript
webpack多页面开发实践
Dec 18 #Javascript
Vue侧滑菜单组件——DrawerLayout
Dec 18 #Javascript
You might like
php实现ping
2006/10/09 PHP
js实现键盘控制DIV移动的方法
2015/01/10 Javascript
如何判断Javascript对象是否存在的简单实例
2016/05/18 Javascript
jQuery四种选择器使用及示例
2016/06/05 Javascript
JS使用正则表达式实现关键字替换加粗功能示例
2016/08/03 Javascript
jQuery手风琴的简单制作
2017/05/12 jQuery
jquery实现用户登陆界面(示例讲解)
2017/09/06 jQuery
记一次webpack3升级webpack4的踩坑经历
2018/06/12 Javascript
layui默认选中table的CheckBox复选框方法
2019/09/19 Javascript
vue缓存之keep-alive的理解和应用详解
2020/11/02 Javascript
基于p5.js 2D图像接口的扩展(交互实现)
2020/11/30 Javascript
Python生成pdf文件的方法
2014/08/04 Python
举例讲解Django中数据模型访问外键值的方法
2015/07/21 Python
10 行 Python 代码教你自动发送短信(不想回复工作邮件妙招)
2018/10/11 Python
Python设计模式之代理模式实例详解
2019/01/19 Python
Dlib+OpenCV深度学习人脸识别的方法示例
2019/05/14 Python
使用Python串口实时显示数据并绘图的例子
2019/12/26 Python
python重要函数eval多种用法解析
2020/01/14 Python
解决Pycharm 导入其他文件夹源码的2种方法
2020/02/12 Python
python调用HEG工具批量处理MODIS数据的方法及注意事项
2020/02/18 Python
django使用F方法更新一个对象多个对象字段的实现
2020/03/28 Python
Python实现ElGamal加密算法的示例代码
2020/06/19 Python
jupyter notebook快速入门及使用详解
2020/11/13 Python
CSS改变网页中鼠标选中文字背景颜色例子
2014/04/23 HTML / CSS
纽约21世纪百货官网:Century 21
2016/08/27 全球购物
Ticketmaster意大利:音乐会、节日、艺术和剧院的官方门票
2019/12/23 全球购物
abstract class和interface有什么区别?
2012/01/03 面试题
广州盈通面试题
2015/12/05 面试题
几道Web/Ajax的面试题
2016/11/05 面试题
2014年团支部工作总结
2014/11/17 职场文书
团代会闭幕词
2015/01/28 职场文书
活动费用申请报告
2015/05/15 职场文书
第一书记观后感
2015/06/08 职场文书
公司年会主持词范文!
2019/05/07 职场文书
Java9新特性对HTTP2协议支持与非阻塞HTTP API
2022/03/16 Java/Android
Redis超详细讲解高可用主从复制基础与哨兵模式方案
2022/04/07 Redis