Archive for 星期三, 三月 25th, 2009 07:25 下午 GMT +8

支持中文博客的国外付费评论与广告平台

喜欢用博客来搞网赚的童鞋有很多。但是真正能用来赚钱谋生的站点,恐怕都是英文站点——原因很简单,英文站点的价格要比中文站点贵很多。

但也有像晓晓这样,心血来潮像弄个玩玩的童鞋啦。国内这类的广告商几乎没什么像样的,而国外的又有许多都不支持中文站点(通不过审核)。晓晓这几天逐一尝试了下这些广告站点,统计了下支持中文博客的广告网站:
(更多...)

A Total Redesign of Xiaoblog

It's hard to become a mature web designer nowadays,as tons of brandly new techs are coming out everyday.Just a few years ago the web 2.0 concept just came out totally strange,but today the most fasionable designers are talking about CSS3.0 and even further HTML 5.0.At the beginning of 2008 Jquery was used in less than 30 percent websites,while  till the end of that year over 80% designers prefer to use it .

(更多...)

IE8正式版CSS的一个BUG的可行hack

前几天晓晓写IE8体验报告的时候提到过,当晓晓设置如下时
img{
max-width:90%;
height:auto;
}

仅在IE8下会出现图片无法自动调整高度的情况——即宽度已经自动缩短,而高度维持原图片高度。
而今天晓晓尝试了一下发现只要再加上一条width:auto;之后IE8就能正常显示了。完整代码为:
img{
max-width:90%;
width:auto;
height:auto;
}

很神奇哈。