Style知识整理

来源:互联网 发布:coc龙升级数据 编辑:程序博客网 时间:2024/06/05 20:05

1.         text-decoration:none 链接a标签的属性,没有下划线

2.         position:relative|absolute

3.         margin: 0 auto;
position: relative;

可以使得页面居中

4.         background: url(/Images/Home/loginLogo.png);
background-repeat: no-repeat;
background-position: center;
也可以这样简写:background: url(/Images/Home/divTabBg.png) no-repeat;
添加背景图片,不重复平铺,位置为center

5.         border-left: 1px solid #666666;
左边框为solid 宽度为1px 颜色为#666666

6.         border: 0; 无边框

7.         position: absolute;
z-index: 10;
z-index
需要和position为absolute一起使用

8.         list-style-type: none;
设置或检索对象的列表项所使用的预设标记。

9.         position: absolute;
top: 394px;
right: 30px;
z-index: 10;
悬浮,可以在页面的任意位置与canvas相似

10.     善用float:left 属性,一般情况下 div标签 爱使用该属性,启到的效果无穷

原创粉丝点击