liferay css讲解之四 themes/相应风格/css/forms.css讲解
    这个CSS文件是用来控制表单内元素的样式的,这个用的不是很多,里面最常要改的应该就是
input[type="text"], input[type="password"], input[type="file"],input[type="submit"], input[type="button"], input[type="reset"], select, textarea, .textarea{
	background: #fff;
	border: 1px solid #aaa;
	border-left-color: #777;
	border-top-color: #777;
	font:12px 'Tahoma','Lucida Sans Unicode','Lucida Grande','Lucida',Arial,Verdana,sans-serif;
	padding: 0;
	width:73px;
}
这个一下子就把经常用到的元素全给定义了,特别是他的宽度,第一次用liferay的时候可能会发现在text ,textarea不管你怎么定义他的宽度都没有变化就是因为他在这里一下子全定义死了,所以只要把text,textarea拿出来重新定义一下就可以了.