近日,我正在学习CSS基础课程,并且完成了其中的作业。在这次作业中,我们需要根据输入的设计图,使用CSS样式来实现相同的样式效果。
.header { background-color: #333; color: #fff; padding: 20px; text-align: center; } .navbar { background-color: #eee; display: flex; justify-content: space-around; padding: 10px; } .navbar a { color: #333; text-decoration: none; } .content { background-color: #f9f9f9; display: flex; justify-content: center; align-items: center; height: 400px; width: 100%; }
通过完成这个作业,我对CSS的样式属性有了更深的理解,同时也加强了自己的实战能力。期待未来的学习中能够更好的应用所学知识。