
Css
文章平均质量分 50
iteye_5361
这个作者很懒,什么都没留下…
展开
-
HTML中的字体颜色
[size=small]1.关于字体颜色的使用方法:原创 2011-07-08 09:38:55 · 402 阅读 · 0 评论 -
表格细边框
table{ border-collapse: collapse; } td{ border: 1px solid #666666;}原创 2011-12-22 14:50:59 · 113 阅读 · 0 评论 -
ol li ul li dl dt dd
ul: unordered listsol: ordered listsli: Lists ol 有序列表。 <ol><li>……</li><li>……</li><li>……</li></ol> 表现为: 1……2……3…… ul 无序列表,表现为li前面是大圆点而不是12原创 2011-12-23 10:52:55 · 144 阅读 · 0 评论 -
Table样式
table { width: 100%; font-family: Tahoma, Verdana, sans-serif; font-size: 11px; line-height: 13px; border-collapse: collapse; clear: left; border: 1px solid #BFBFBF; } td{ heig...原创 2012-01-04 14:33:50 · 304 阅读 · 0 评论 -
Css3全屏背景
html{ background:url('mu.jpg') center center; min-height:100%; background-size:cover; } body{ min-height:100%; }原创 2012-07-11 15:54:30 · 244 阅读 · 0 评论 -
Div屏幕底部居中
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="原创 2012-03-30 12:55:22 · 567 阅读 · 0 评论 -
游览器兼容,ie8兼容ie7 ie6
<meta http-equiv="x-uacompatible" content="ie=7"/> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> <meta http-equiv="x-ua-compatible" content="ie原创 2012-04-23 15:20:15 · 125 阅读 · 0 评论 -
整站变灰
html { filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: url(desaturate.svg#grayscale...原创 2012-08-14 16:24:20 · 119 阅读 · 0 评论