Correction status:Uncorrected
Teacher's comments:
/* 清除浏览器自带的边距 */ *{ padding: 0; margin: 0; } /* 设置body的高度,出现下拉 */ body{ height: 3000px; background: #7CCEE8; } /* 设置导航条的属性 */ .top{ width: 100%; height: 60px; background-color:pink; line-height:60px; text-align: center; /* 使用固定定位,不让其滚动 */ position: fixed; /* 调整透明度 */ opacity: 0.5; } .top2{ opacity: 0.8; } /* 设置轮播图区块 */ .banner{ width: 100%; height: 800px; background-color:#9BE5FC; }
点击 "运行实例" 按钮查看在线实例