Css-TH,TR,TD

css样式中将th,tr,td 大写,可达到抓取的效果。这样在页面中th,tr,td不需要添加class属性,便会根据css样式文件获取样式。
.showtable{
	font-family: 宋体;
	border-collapse: collapse;
	margin-top: 20px;
	margin-left: 15px;
}
.showtable TR{
	height: 25px;
}
.showtable TH{
	font-family: 宋体;
	font-size: 10pt;
	border: 1px solid black;
	text-align: center;
	white-space:nowrap;
}
.showtable TD{
	font-family:Times New Roman;
	font-size: 9pt;
	border: 1px solid black;
	text-align: right;
	white-space:nowrap;
}
.showtable THEAD TR{
	height: 50px;
}
.showtable TBODY TH{
	font-weight:normal;
}
.showtable TFOOT TD{
	font-weight:bold;
}



你可能感兴趣的:(Css)