发表于: 2021-05-24 22:34:13
1 1062
今天完成的事情:
1,task8-2左侧的圆点链接完成
.box5-6{
width: 90px;
height: 20px;
background-color: #ffffff;
display: flex;
justify-content:flex-start;
align-items: center;
}
.circle{
width: 10px;
height: 10px;
border-radius:50% ;
border: 1px solid #ff650e;
}
.green5{
color:#29b078 ;
margin-top: 10px;
margin-left: 6px;
}
.box5-6:hover div{
background: rgb(247, 36, 124) !important;
}
.box5-6:hover p{
color: rgb(247, 36, 124) !important;
}
2,task8-2文字溢出文本框问题解决
明天计划的事情:
1,计划用bootstrap重写任务8,之前都是用css写的,不符合任务要求
遇到的问题:
1,整张图片作为轮播图写出来没问题,若是多个小图作为整张图片,小图片会发生拥挤,不知道为什么会这样
2,文本框内的文字会挤出文本框,原因是使用了定高,改为不定高即可
收获:
1,有些简单任务效果,靠图片插入,若是实现不了,应该反思可不可以用html写出来
评论