table的宽度百分比取决于父对象的宽度,父对象常见为div,
常见错误
<div style="width:100%">
<table style="width;100%;margin:10px"
</div>
这种情况下,table 肯定将获得div的全部宽度,不会因为margin而进行改变。所以要想保持美观,尽量不要在table上加margin, 正确写法如下:
<div style="width:100%;margin:10px">
<table style="width;100%"
</div> 小经验,分享之
近日,碰到类似于“ ...raw type list..”字样的提示,研究发现,J2SE 5.0有了一个新的变化,就是generic概念,详细请看:
http://java.sun.com/docs/books/tutorial/java/javaOO/gentypes.html问题自然就会得到答案。
提供一例:
假设你要建立一类Product的arraylist,代码应为:
List<Product> result = new ArrayList<Product>();
result.add(new Product()); 以前的写法为:
List result = new ArrayList();
result.add(new Product()); 其中奥妙看那篇文章吧。:)