关于网页的总结

来源:互联网 发布:药师丸博子 知乎 编辑:程序博客网 时间:2024/06/06 18:28

1、letter-spacing:表示字符与字符之间的间隔多少;

2、font-weight:字体加粗;

3、text-transform:lowercase:字符变为小写;

4、word-spacing:10px:表示单词间距,比如 abcd abcd,两个词之间的间距;

5、text-indent:40px:表示首行缩进;

6、border-style:dashed:表示边框的线条为虚线;

7、border-style:solid double dotted dashed:表示边框的上为实线,右面是双线,下面是点线,左面是虚线;

8、margin:0 auto;:页面居中;

9、clear:both:清除左右浮动;

10、如果打开网页出现乱码:1.第一种方式将它另存为unicode或是utf-8编码形式;2.<meta http-equiv="Content-Type" content="text/html;charset=utf-8">

<meta name="author" content="kevin_lzz">

11、<meta name="keywords" content="html,css"/>表示关键词,用于搜索引擎使用;

12、<meta name="debscription" content="html学习,css"/>网页描述;

13、<meta http-equiv="Refresh" content="3,URL=http://www.baidu.com"/>3秒刷新,跳转到百度页面;

14、z-index:-1 有时候要和position:absolute进行定义;

15、p{cursor:pointer}:鼠标移动上去变成小手形状;

16、p{cursor:move}:鼠标移动上去变成拖拽形状;

17、a{text-decoration:none;color:"red"}:表示超链接的下划线取消,变成红色;

18、a:hover{color:green;font-size:12px;}:表示移动的超链接,就变成绿色,大小也是有变化的;

19、a:link{} a:visited{} a:hover{} a:active{}有顺序限制

原创粉丝点击