码迷,mamicode.com
首页 > 其他好文 > 详细

今天的收货

时间:2020-05-22 18:54:50      阅读:45      评论:0      收藏:0      [点我收藏+]

标签:nsf   lin   tom   移动   顺时针   otto   自动   div   dde   

1.三种定位方式:

  相对定位relative:相对于自身的位置进行偏移,postion需要搭配left/right/top/bottom

  postion:relative;

  left:10px;

  bottom:10px;

  绝对定位position:相对于有position属性的父元素定位,如果父元素没有position属性就会再向上找父元素,最后一张找到body元素

  固定定位fixed

2. 溢出div隐藏

  hidden内容溢出div就隐藏:overflow:hidden;

  scroll内容溢出添加滚动条:overflow:;scroll;

  overflow:auto 是根据内容自动添加滚动条

3. 块状元素转内联元素

  block:块状;inline:内联元素;inline-block:内联块状的结合,可以设置宽高,不独占一行

  none:隐藏   display:

4.CSS3

  translate(x轴,y轴):移动

  transform:translate(20px,50px)

  rotate(顺时针旋转度数):旋转

  transform:rotate(200deg)

  scale(2,2):长、宽变大的倍数

  transition:transform 5s:过渡时间

  tran

今天的收货

标签:nsf   lin   tom   移动   顺时针   otto   自动   div   dde   

原文地址:https://www.cnblogs.com/LNH2019/p/12938959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!