扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
line-height: 40px;
盱眙网站制作公司哪家好,找成都创新互联公司!从网页设计、网站建设、微信开发、APP开发、响应式网站设计等网站项目制作,到程序开发,运营维护。成都创新互联公司于2013年创立到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联公司。
行高:盒子高;
font: 14px/24px “宋体”;
font-size:14px;
line-height:24px;
font-family:"宋体";
font-family: "华文彩云";
font-family: "微软雅黑","宋体";
font-family: "Times New Roman","微软雅黑","宋体";
font:12px/30px "Times New Roman","Microsoft YaHei","SimSun";
font:12px/200% “宋体”
font:12px/24px “宋体”;
a:link{
color:red;
}
a:visited{
color:orange;
}
a:hover{
color:green;
}
a:active{
color:black;
}
1、link表示,用户没有点击过这个链接的样式,是英文中“链接”的意思。
2、:visited表示,用户访问过这个链接的样式,是英文“访问过的”意思。
3、:hover表示,用户鼠标悬停的时候链接的样式,是英文“悬停”的意思。
4、:active表示,用户用鼠标点击这个链接,但是不松手,此刻的样式,是英文“激活”的意思。
.nav ul li a{
display: block;
width: 120px;
height: 40px;
}
.nav ul li a:link ,.nav ul li a:visited{
text-decoration: none;
background-color: yellowgreen;
color:white;
}
.nav ul li a:hover{
background-color: purple;
font-weight: bold;
color:yellow;
}
.nav ul li a{
display: block;
width: 120px;
height: 50px;
text-decoration: none;
background-color: purple;
color:white;
}
.nav ul li a:hover{
background-color: orange;
}
background-repeat:no-repeat; 不重复
background-repeat:repeat-x; 横向重复
background-repeat:repeat-y; 纵向重复
background-position:向右移动量 向下移动量;
background-position: right bottom;
background-attachment:fixed;
background:red url(1.jpg) no-repeat 100px 100px fixed;
1background-color:red;
2background-image:url(1.jpg);
3background-repeat:no-repeat;
4background-position:100px 100px;
background-attachment:fixed;
background: red;
position:relative; → 必须先声明,自己要相对定位了,
left:100px; → 然后进行调整。
top:150px; → 然后进行调整。
span{
position: absolute;
top: 100px;
left: 100px;
width: 100px;
height: 100px;
background-color: pink;
}
→ 相对定位
→ 没有定位
→ 绝对定位,将以box1为参考,因为box2没有定位,box1就是最近的父辈元素
→ 相对定位
→ 相对定位
→ 绝对定位,将以box2为参考,因为box2是自己最近的父辈元素
→ 绝对定位
→ 绝对定位,将以div作为参考点。因为父亲定位了。
left:50%;
margin-left:负的宽度的一半
1、z-index值表示谁压着谁。数值大的盖住数值小的。
2、只有定位了的元素,才能够有z-index值。也就是说,不管相对定位、决定定位、固定定位,都可以使用z-index值。而浮动的东西不能够使用。
3、z-index值没有单位,就是一个整数值。默认的z-index值为0。
4、定位了的元素,永远能够压住没有定位的元素。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流