摘要:
.wrapper { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 10px; grid-auto-rows: minmax(100px, auto); } .one { background-color: bluev 阅读全文
摘要:
有四个属性: static:静止 relative:相对的 fixed:固定的(广告等信息固定在网页的某个位置,不管你上下滑动位置不变) absolu:绝对的 .box{ display:inline-block; width: 100px; height: 100px; background: blue; color: rgb(71, 16, 16); } #two { posit... 阅读全文