当你用CSS来定义链接的多个状态样式时,要注意它们书写的顺序,正确的顺序是:a:link {color: #FF0000} /* 未访问的链接 */a:visited {color: #00FF00} /* 访问过的链接 */a:hover {color: #FF00FF} /* 当有鼠标悬停在链接上 */a:active {color: #0000FF} /* 被选择的链接 */ Read More
posted @ 2013-07-02 18:15 tinyphp Views(265) Comments(0) Diggs(0) Edit
CSS:body{ margin:0; padding:0;background-image:url(text.txt);/*for IE6 防抖,也可以用一张图片URL*/ background-attachment:fixed;} /*是否存在这文件无所谓,要fixed,不能用scroll */ .main{ height:1800px;}.footer{ color:red; left:0;background:#ccc; height:30px; position:fixed; bottom:0; z-index:999; overflow:visible;/* for IE6 *.. Read More
posted @ 2013-07-02 17:31 tinyphp Views(6424) Comments(0) Diggs(0) Edit