可以使用 css 属性:min-width。但是,IE 不认。Google 到一个文章,讲解了如何纯用 css 解决这个问题。方法是配合使用 min-width 和仅 IE 认的 Dynamic Properties。例子:
min-width:785px;
width:e xpression(document.body.clientWidth < 800 ? "785px" : "100%" );
找了很久,这个最好用!!!
转载于:杰奏中国 http://www.jiezo.com/blog/default.asp