-
CSS不可缺少的技巧
香水坏坏 发表于2008-4-3 [CSS/UI]QUOTE:CSS is important. And it is being used more and more often. Cascading Style Sheets offer many advantages you don’t have in table-layouts - and first of all a strict separation between layout, or design of the page, and the information, presented on the page. Thus the design of pages can be easily changed, just replacing a css-file with another one. Isn’t it great? Well, actualy, it is.
(More...)
CSS是重要的,它正在越来越广泛的被运用。层叠样式表拥有很多表格布局所没有的优势,首先从布局或者页面的设计与出现在页面中的信息中作严格的分离,从而让页面的设计能够很容易被改变,仅用一个CSS文件更换另一个。难道它不够强大吗?恩,是的,其实它很强大。 -
CSS打造网页Tabs
香水坏坏 发表于2008-4-3 [CSS/UI] -
CSS兼容IE6,IE7,FF的技巧
香水坏坏 发表于2007-8-15 [CSS/UI]一、CSS HACK
以下两种方法几乎能解决现今所有HACK.
1, !important
随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)
<style>
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
</style>
(More...) -
CSS实现透明
香水坏坏 发表于2007-8-8 [CSS]CSS透明度的实现:
IE6+下:通过滤镜 filter:alpha(opacity=40);
FF1.5+,Opera9+下 opacity:0.4;
取值:{0.0,1.0}|inherit
1表示不透明
Moz + FF 下:-moz-opacity:0.5;
(More...)

