bootstrap响应式布局练习

bootstrap响应式布局练习

在三种不同的屏幕下呈现不同的效果
大屏(pc端)
bootstrap响应式布局练习_第1张图片

小屏(平板)
bootstrap响应式布局练习_第2张图片

超小屏(手机)

bootstrap响应式布局练习_第3张图片

html文件





    
    
    
    
    
    
    
    来峡谷和我玩耍吧





    
    

最强射手 让你意想不到的英雄上分攻略

阅读(1123) 评论(122) 赞(24)

最强射手 让你意想不到的英雄上分攻略

阅读(1123) 评论(122) 赞(24)

最强射手 让你意想不到的英雄上分攻略

阅读(1123) 评论(122) 赞(24)

最强射手 让你意想不到的英雄上分攻略

阅读(1123) 评论(122) 赞(24)

最强射手 让你意想不到的英雄上分攻略

阅读(1123) 评论(122) 赞(24)

css文件

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
body {
  background-color: #f5f5f5;
}
.container {
  background-color: #fff;
}
/* 修改container的最大宽度 */
@media screen and (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}
/* header */
header {
  padding-left: 0 !important;
}
.logo {
  background-color: #ccc;
}
.logo img {
  /* logo图片不需要缩放 */
  /* width: 100%; */
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/*1 如果进入到超小的屏幕下,logo图片就隐藏起来 */
/* 2.事先准备好一个盒子在logo里面,他平时是隐藏起来的,只有在超小屏幕下才显示出来 */
.logo span {
  display: block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.nav {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
}

.nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
  font-size: 16px;
}
.nav a:hover {
  background-color: #fff;
  color: #333;
}
.nav a::before {
  vertical-align: middle;
  padding-right: 5px;
}
/* 当进入小屏幕和朝下屏幕时,nav里的li浮动起来,在一行显示,宽度各占20% */
@media (max-width: 991px) {
  .nav li {
    float: left;
    width: 20%;
  }
  article {
    margin-top: 10px;
  }
}
/* 当我们进入超小屏幕下,nav的文字会变小 */
@media (max-width: 767px) {
  .nav li a {
    font-size: 10px;
    padding: 3px;
  }
  .logo a {
    text-decoration: none;
  }
  /* 当我们处于超小屏幕 第一个li宽度为100%,
  剩下的li各占50%  */
  .news li:nth-child(1) {
    width: 100% !important;
  }
  .news li {
    width: 50% !important;
  }
  .publish h3 {
    font-size: 14px;
  }
}

/* .nav li a {
  background-image: -webkit-linear-gradient(#50baff, #ff4bcc, #50baff);
  background-image: linear-gradient(#50baff, #ff4bcc, #50baff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.news li {
  width: 25%;
  float: left;
  height: 128px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.news li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.news li:nth-child(1) {
  width: 50%;
  height: 266px;
}

.news li:nth-child(1) p {
  line-height: 41px;
  font-size: 20px;
  padding: 0 10px;
}

.news li a img {
  width: 100%;
  height: 100%;
}
.news li a p {
  position: absolute;
  width: 100%;
  height: 41px;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
}
.publish {
  border-top: 1px solid #ccc;
}
.pic {
  margin-top: 10px;
}
.publish.row {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.pic img {
  width: 100%;
}
.banner img {
  width: 100%;
}
.hot {
  border: 1px solid#ccc;
  display: block;
  margin-top: 20px;
  padding: 0 20px 20px;
}
.hot span {
  border-radius: 0;
  margin-bottom: 20px;
}
.hot p {
  font-size: 12px;
}
.dj {
  position: fixed;
  top: 350px;
  right: -5px;
}

开头需要引入bootstrap.min.css文件
在bootstrap中文网下载

bootstrap布局时用到的一些组件
https://v3.bootcss.com/components/#btn-groups

你可能感兴趣的:(html,css,bootstrap)