首页 > 代码库 > HTML:表格基础

HTML:表格基础

本文介绍html中表格的基本用法。

代码整理自w3school:http://www.w3school.com.cn

<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-cn" />

<title>表格</title>

<head>
<link rel="stylesheet" type="text/css" href=http://www.mamicode.com/"css/tableStyle.css">>css文件:

tableStyle.css

table.baseTableStyle thead
{color:green}

table.baseTableStyle tbody
{color:blue;height:50px}

table.baseTableStyle tfoot
{color:red}



HTML:表格基础