CSS基础--table表格

表格在th前面设置好每个宽度:(使用  标签就可以提前设置好每一列的宽度)



	
		
		
		
	
	
		
title1 title2 title3 title4 title5
content1 content2 content3 content4 content5
content1 content2 content3 content4 content5
content1 content2 content3 content4 content5

表格单元格边框合并为一个:

table { border-collapse:collapse; }
table,td,th { border: 1px solid black;}

 

你可能感兴趣的:(CSS)