我的CSS笔记: 链接菜鸟 https://www.runoob.com/css/css-tutorial.html
隐藏:
不占位不显示:display: none;
占位不显示:visibility: hidden;
透明度:opacity:0.4;
鼠标:
鼠标事件失效:pointer-events:none;
禁止手势:cursor: not-allowed; (注意不能与pointer-events:none; 一起使用会把禁止手势也给整失效了)
按分辨率调整:
@media screen and (max-width:1000px) { }
@media screen and (min-width:1000px) { }
@