发表于: 2021-07-13 21:21:28
2 1068
今天完成的事情:
在搞任务五 ,还缺个底部没做完。
学习了一种新的垂直居中的方法,直接给子元素加margin:auto;
学习了把在Ps里导出的图放到背景图里面的指定位置。
明天计划的事情:
继续完成任务五底部。然后复习如何执行git命令。看菜鸟教程。
遇到的问题:
不明白底部有两个按钮怎么等间距排放。底部加了固定以后没有效果。
收获:
学会了使用z-index:10;优化了头部固定以后的效果 使之美观。
.header {
background-color: rgb(7, 77, 77);
text-align: center;
height: 80px;
width: 100%;
position: fixed;
z-index: 10;
让字体自适应布局。
.h2{
flex-grow: 1;
margin-left: 10px;
底部固定。
.footer {
width: 100%;
height: 100px;
position: fixed;
bottom:0;
margin-top: 30px;
background-color: white;
}
评论