<!DOCTYPE html>
<html>
<head>
<title>用CSS的UL LI实现表格布局</title>
</head>
<style>
ul{margin: 0 auto;padding: 0px;list-style: none;}
/*定义表格区域大小和边框等参数*/
.e{width: 250px;border-top: solid #f00 1px;border-left: 1px solid #f00;display: table;margin-top: 50px;}
/*实现表格横向*/
li{float: left;}
/*定义表格样式*/
.id,.name,.gender,.age,.adress{color: #999;font-size: 12px;text-align: center;border-right: 1px solid #f00;border-bottom: 1px solid #f00;height: 22px;line-height: 22px;}
/*每列的宽度,百分比也可以用,但是百分比里总百分比不要达到100%,容易溢出*/
.id{width: 50px;}
.name{width: 50px;}
.gender{width:50px;}
.age{width: 50px;}
.adress{width: 45px;}
</style>
<body>
<div class="e">
<ul>
<li class="id">ID</li&g
<html>
<head>
<title>用CSS的UL LI实现表格布局</title>
</head>
<style>
ul{margin: 0 auto;padding: 0px;list-style: none;}
/*定义表格区域大小和边框等参数*/
.e{width: 250px;border-top: solid #f00 1px;border-left: 1px solid #f00;display: table;margin-top: 50px;}
/*实现表格横向*/
li{float: left;}
/*定义表格样式*/
.id,.name,.gender,.age,.adress{color: #999;font-size: 12px;text-align: center;border-right: 1px solid #f00;border-bottom: 1px solid #f00;height: 22px;line-height: 22px;}
/*每列的宽度,百分比也可以用,但是百分比里总百分比不要达到100%,容易溢出*/
.id{width: 50px;}
.name{width: 50px;}
.gender{width:50px;}
.age{width: 50px;}
.adress{width: 45px;}
</style>
<body>
<div class="e">
<ul>
<li class="id">ID</li&g