1:当我们写字体样式的时候,我们也许会这样子写
font-size: 1em;
line-height: 1.5em;
font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-family: verdana,serif
修正: font: 1em/1.5em bold italic small-caps verdana,serif
2:!important 在IE中会被忽视
因为浏览器之间的不兼容性,我们在写css的时候,为了保证网站能在各个
浏览器之间保持兼容性,所以 我们需要使用!important这个属性
如果你在css使用了这个,那么它的优先级会比和它同名属性的优先级高。
这个是给除了给IE以外的浏览器用的。
eg:margin-top: 3.5em !important; margin-top: 2em
上面指的是,除IE之外的浏览器是3.5em,而IE是2em。这个很有用。
3:Image的alt属性 - TOP
我们在网站开发的时候,我们常常被建议使用HTML标签来显示文本,而不是图像。
这样可以使得网站具有更快的加载速度以及可访问性。举个例子说,你开发了一个网站,
你想在你网站的每一个页面的页面顶端放一个"购买物品"。现在加入你是一个卖家,
那么你很期望你的物品能被搜索引擎找到,也许你会这么做:
<h1><img src="widget-image.gif" alt="购买物品" /></h1>
实现了,但是这里需要注意的是,搜索引擎并不会关注img标签alt里的关键字因为现在很多的卖家都是这样子),所以白搭。所以,我们可以用css来代替
如下:
<h1><span>购买物品</span></h1>
然后定义css:
h1
{
background: url(widget-image.gif) no-repeat;
}
h1 span
{
position: absolute;
left:-2000px
}
这样子就OK了,迎合了搜索引擎的口味。所以呀,搜索引擎真的伤不起呀。
图片宽度自适应
img {max-width: 100%}
禁止自动换行
h1 { white-space:nowrap; }
CSS提示框
<a class="tooltip" href="#">链接文字 <span>提示文字</span></a>
a.tooltip {position: relative} a.tooltip span {display:none; padding:5px; width:200px;} a:hover {background:#fff;} /*background-color is a must for IE6*/ a.tooltip:hover span{display:inline; position:absolute;}