老师 帮忙检查下
来源:3-17 编程练习
技术为王2383098363
2019-09-11 16:50:43
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> /*在此处补充代码*/ *{ padding: 0; margin: 0; list-style: none; } li{ color: #fff; display: block; font-size: 18px; /*margin:0 60px;*/ } input{ width: 50px; height: 32px; background: #FFA500; color: #fff; border: none; font-size: 18px; border-radius: 5px; /*margin: 0 20px;*/ } header{ background: #000; display: flex; justify-content:space-around; align-items:center; } .logo,.nav,.login{ display: flex; justify-content:space-between; } .nav{ width:500px; } .login{ width:130px; } section{ display: flex; justify-content: space-around; flex-wrap: wrap; } .section{ width: 650px; height: 150px; background: #A2D9E8; border-radius: 10px; margin: 10px; display: flex; align-items: center; justify-content: space-around; } .btn{ width: 120px; height: 48px; color: #fff; font-weight: bold; background: #FFA100; border-radius: 10px; display: flex; align-items: center; justify-content:center; } .box{ display: flex; flex-direction: column; justify-content:space-around; height: 100%; } </style> </head> <body> <!-- 头部 --> <header> <div class="logo"> <img src="http://climg.mukewang.com/59197ab000014f1503000100.jpg" alt=""> </div> <ul class="nav"> <li>课程</li> <li>路径</li> <li>猿问</li> <li>手记</li> </ul> <div class="login"> <input type="button" value="登录"> <input type="button" value="注册"> </div> </header> <!-- 主体内容 --> <section> <div class="section"> <div class="box"> <p>《前端小白入门手册》</p> <div>适用人群:没有任何前端基础的小白</div> <div>费用:¥499</div> </div> <div class="shopping"> <div class="btn">加入购物车</div> </div> </div> <div class="section"> <div class="box"> <p>《HTML5月CSS3实现动态网页》</p> <div>适用人群:有html和css基础的童鞋</div> <div>费用:¥599</div> </div> <div class="shopping"> <div class="btn">加入购物车</div> </div> </div> <div class="section"> <div class="box"> <p>《HTML5月CSS3实现动态网页》</p> <div>适用人群:有html和css基础的童鞋</div> <div>费用:¥599</div> </div> <div class="shopping"> <div class="btn">加入购物车</div> </div> </div> <div class="section"> <div class="box"> <p>《HTML5月CSS3实现动态网页》</p> <div>适用人群:有html和css基础的童鞋</div> <div>费用:¥599</div> </div> <div class="shopping"> <div class="btn">加入购物车</div> </div> </div> </section> </body> </html>
1回答
好帮手慕码
2019-09-11
同学你好!
代码效果实现的不错,按照任务要求,还可以添加:
例如:
效果:
如果帮助到了你,欢迎采纳,祝学习愉快~
相似问题