Gointerface接口声明实现及作用详解
197
2022-10-28
16-11-09
今天学习的主要内容就是列表,期间接触到另一种默认首页:default。列表分为有序列表
有序列表和无序列表大体相同,下以无序列表为例制作网页标头。
首先需要搭建html框架,在
中添加内容,添加h3{ (此处清楚
margin: 0px;
/*内边框*/
border: 0px;
}
div{
/*宽(100%表示宽度随屏幕分辨率改变)*/
width: 100%;
/*高*/
height: 50px;
/*背景色*/
/*background-color: blue;*/
}
ul{
width: 800px;
height: 50px;
background-color: #0191DA;
/*外边框*/
margin: 0 auto;
}
li{
width: 80px;
height: 50px;
/*background-color: yellow;*/
/*字体颜色*/
color: white;
/*文本水平居中*/
text-align: center;
/*行高*/
line-height: 50px;
/*漂浮*/
float: left;
/*列表样式*/
list-style: none;
}
li:hover{
background-color: orange;
}
列表的样式编辑,只需根据
发表评论
暂时没有评论,来抢沙发吧~