java中的接口是类吗
178
2022-10-28
16-11-10
今天的内容有点意思,学习了如何在网页上添加图片,以及如何赋予图片或文字连接。
首先接触一下编辑命令:图片标签、src标记图片位置,alt标记图片属性,这两个命令都是的属性,超链接,其属性href添加链接地址,这个命令有三个作用:1、作为本地文件的超链接 2、连接到网站网址 3、标记连接的锚点 target可以打开新的网页保留原来网页,在制作文字链接时,会出现下划线标识,可以用text-decoration编辑除去样式。
下以制作百度、宜搜、搜狐等链接为例:
h2{
width: 100%;
height: 50px;
background-color: pink;
}
ul{
width: 660px;
height: 50px;
background-color: yellow;
margin: 0px auto;
}
li{
color: white;
background-color: grey;
width: 100px;
height: 50px;
float: left;
/*列表样式*/
list-style: none;
/*文本水平居中*/
text-align: center;
/*行高*/
line-height: 50px;
/*右外边框*/
margin-right: 10px;
/*链接样式*/
text-decoration: none;
}
li:hover{
background-color: red;
}
发表评论
暂时没有评论,来抢沙发吧~