html实现复杂表头

来源:互联网 发布:网络工程与网络管理 编辑:程序博客网 时间:2024/05/16 04:43

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>多表头表格</title> </head> <body> <table id="tab" cellpadding="1" cellspacing="1" border="1"> <tr> <th rowspan="2">序号</th> <th colspan="2">王五</th> <th colspan="2">李四</th> <th colspan="2">孙传</th> <th colspan="2">胡平</th> <th rowspan="2">合计</th> </tr> <tr> <th>语文</th> <th>数学</th> <th>语文</th> <th>数学</th> <th>语文</th> <th>数学</th> <th>语文</th> <th>数学</th> </tr> <tr> <th>1</th> <th>78</th> <th>96</th> <th>67</th> <th>98</th> <th>88</th> <th>75</th> <th>94</th> <th>69</th> <th> </th> </tr> <tr> <th>2</th> <th>89</th> <th>68</th> <th>77</th> <th>87</th> <th>84</th> <th>76</th> <th>71</th> <th>87</th> <th> </th> </tr> <tr> <th>3</th> <th>75</th> <th>78</th> <th>89</th> <th>74</th> <th>65</th> <th>68</th> <th>98</th> <th>90</th> <th></th> </tr> </table> </body> </html>

效果如下:

0 0