Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 269 Bytes

在页面上隐藏元素的方法有哪些.md

File metadata and controls

7 lines (7 loc) · 269 Bytes
  • position配合z-index; 或者 left/top/bottom/right : -100%;
  • margin-left: -100%;
  • width: 0; height: 0; overflow: hidden;这个算吗
  • opacity: 0;
  • display:none;
  • transform: scale(0)/translateX(+-100%)/translateY(+-100%)/rotateX(90deg);
  • filter: opacity(0);