Archive

Archive for the ‘CSS’ Category

CSS半透明滤镜在FIREFOX和IE下面的能够通用的写法

October 18th, 2008 No comments

CSS半透明滤镜在FIREFOX和IE下面的能够通用的写法,记录下来备用: CSS代码 .test{      background:#000;      color:white;      width:200px;      position:absolute;      left:10px;      top:10px;       filter: Alpha(opacity=10);       Continue Reading

  • Share/Bookmark

CSS代码实现图片自动缩放图代码

August 20th, 2008 No comments

img{ width:expression(width>700?”700px”:width); } 当图片的宽度大于700时。自动按宽度700px自动缩放。 非常实用,大家不妨试试。 博主评价:简单高效,可谓“四两拨千斤”。 Continue Reading

  • Share/Bookmark