黄工无刷电机学习
直播中

李娟

7年用户 1326经验值
私信 关注
[问答]

关于CSS的小技巧你都知道哪些

关于CSS的小技巧你都知道哪些?

回帖(1)

乔银栓

2021-10-22 15:30:50
  一、多行文字的垂直居中
  1.单行实现垂直居中
  《style》
  .item{
  width: 90px;
  height: 50px;
  border: 1px solid orange;
  margin-bottom: 5px;
  text-align: center;
  line-height: 50px;
  }
  .item .text{
  font-size: 12px;
  }
  《/style》
  《body》
  《ul》
  《li class=“item”》
  《span class=“text”》我是行内元素我是行内元素《/span》
  《/li》
  《/ul》
  《/body》
  2.多行实现垂直居中
  从上面看到在盒子内的元素确实实现了垂直居中,但是超出的部分不再盒子内部,下面介绍使用:display
  :table来实现多行文本的垂直居中。
  .item{
  display: table; //在父元素中添加样式display:table
  width: 90px;
  height: 50px;
  border: 1px solid orange;
  margin-bottom: 5px;
  text-align: center;
  }
  .item .text{
  display: table-cell; //在子元素中使用样式:table-cell,vertical-align:middle
  vertical-align: middle;
  font-size: 12px;
  }
  《/style》
  《body》
  《ul》
  《li class=“item”》
  《span class=“text”》我是行内元素我是行内元素《/span》
  《/li》
  《/ul》
  《/body》
  二、Sticky footer
  Sticky footer实现的效果是:当文字内容不足时,footer元素在屏幕的下方。如果文字内容过多,下方的footer元素会自动的往下移动,处在文字的下面。
  《style》
  .content{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0,0, 0.8);
  overflow: auto;
  }
  .content-wrapper{
  width: 100%;
  min-height: 100%;
  }
  .content-wrapper .content-main{
  padding-bottom: 64px;
  }
  .footer{
  width: 32px;
  height: 32px;
  background-color: orange;
  margin: -64px auto 0;
  }
  《/style》
  《body》
  《button style=“background: white;”》我是按钮《/button》
  《div class=“content”》
  《div class=“content-wrapper”》
  《div class=“content-main”》
  发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网
  发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网发电机房屋的经费公开网
  《/div》
  《/div》
  《div class=“footer”》
  《/div》
  《/div》
  《/body》
  效果就是当文字没有占满屏幕时,footer元素在屏幕的下方位置不改变。
  2.当文字内容超多时,会使得footer元素向下移动,footer元素存在于content-main的padding-bottom区域。
  三、flex布局最后一行元素左对齐
  《style》
  .photos{
  width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  }
  .photos .item{
  width: 120px;
  height: 120px;
  }
  .photos img{
  width: 100%;
  height: 100%;
  }
  《/style》
  《body》
  《div class=“photos”》
  《div class=“item”》
  《img src=“。/photos/CPNS.jpg” alt=“”》
  《/div》
  《div class=“item”》
  《img src=“。/photos/CPNS.jpg” alt=“”》
  《/div》《div class=“item”》
  《img src=“。/photos/CPNS.jpg” alt=“”》
  《/div》《div class=“item”》
  《img src=“。/photos/CPNS.jpg” alt=“”》
  《/div》《div class=“item”》
  《img src=“。/photos/CPNS.jpg” alt=“”》
  《/div》
  《/body》
  1.使用flex布局后,不进行左对齐时实现的效果:
  这里会发现,当图片的数量不是3的倍数时,会导致最后一行的图片不按序排列的情况。
  2.为了使最后一行实现按序排列,使用伪元素实现最后一行元素的左对齐:
  .photos::after{
  content:“”;
  width: 120px;
  height: 120px;
  }
  使用伪元素实现的原理就是,在photos的末尾添加一个同样大小的元素用来占位,只不过是隐形的。
  3.使用伪元素之后带来的问题:
  因为使用弹性布局时,盒子的大小是由内容撑开的。由于伪元素的存在,所以伪元素会自动占一行从而把整个盒子的大小给撑开了。
  [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-uXSdyKGn-1626042663615)(C:Users86185AppDataRoamingTyporatypora-user-imagesimage-20210710181152591.png)]
  解决方法:不要给伪元素确定的高度,让他自己计算高度。当元素是六个的时候,伪元素的高度时0。当元素不是3的倍数的时候,伪元素的高度自动计算为确定的高度。
  不给伪元素添加高度
  .photos::after{
  content:“”;
  width:120px;
  }
  四、使用padding实现图片自适应并保持宽高比
  1.正常情况下,我们使用下面的方法来实现图片的自适应:这样图片的宽高比不会发生变化
  《style》
  .img-wrapper{
  width: 100%;
  }
  .img-wrapper img{
  width: 100%;
  height: 100%;
  }
  《/style》
  《body》
  《div class=“img-wrapper”》
  《img src=“photos/cat.png” alt=“”》
  《/div》
  《h1》我是标题《/h1》
  《/div》
  《/body》
  问题:但是会带来的问题就是当刷新页面的时候,因为要发起请求图片的加载会有延迟。所以会出现图片展示不出来,而下面的文字占据了图片的位置。
  2.使用padding实现
  如果使用给图片设置确定高度,虽然不会出现上面文字占据图片位置的问题。但是图片的宽高比会发生变化。
  .img-wrapper{
  position: relative;
  width: 100%;
  /* 这里的75%是相对于wrapper的宽度来说的 */
  padding-bottom: 75%;
  }
  .img-wrapper img{
  /* 这里设置为absolute使得图片占据wrapper的paddnig */
  position: absolute;
  width: 100%;
  height: 100%;
  }
  《/style》
  《body》
  《div class=“img-wrapper”》
  《img src=“photos/cat.png” alt=“”》
  《/div》
  《h1》我是标题《/h1》
  《/body》
  五、使用伪元素扩大点击区域
  实现目标:当点击一个图标的时候,出现某种动作。在某些情况下,需要扩大图标的点击范围。
  当然我们很容易想到,只需要增大图标的font-size实现就可以了。
  如何不增大字体大小扩大点击的范围呢?
  使用伪元素来实现:
  《style》
  .header{
  width: 50%;
  height: 60px;
  background-color: orange;
  }
  .header .close{
  position: relative;
  float: right;
  font-size: 30px;
  color: #fff;
  margin-right: 10px;
  cursor: pointer;
  }
  .header .close::after{
  content:“”;
  position:absolute;
  /* 元素的上下左右扩大10px大小 */
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  }
  《/style》
  《body》
  《div class=“header”》
  《span class=“close” id=“class”》X《/span》
  《/div》
  《script》
  var point=document.getElementsByClassName(“close”)[0]
  point.οnclick=function(){
  alert(“hello”)
  }
  《/script》
  《/body》
举报

更多回帖

发帖
×
20
完善资料,
赚取积分