Blogger Information
Blog 23
fans 0
comment 1
visits 14228
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS美化表格
彪小A的博客
Original
1098 people have browsed it

效果图.png

2.JPG

源码:

<!DOCTYPE html>
<html>
	<head>
		<style type="text/css">
			table,th,td{
				border: 1px solid #333;
			}
			table{
				width: 60%;
				text-align: center;
				border-collapse: collapse;
				margin: 50px auto;
				box-shadow: 3px 3px 3px  #333333;
			}
			td{
				padding: 6px;
			}
			td img{
				border-radius: 50%;
				box-shadow: 1px 1px 2px #666666;
			}
			th{
				padding: 4px;
				background-color: rgba(155,155,0,0.3);
				color:#F08080;
			}
			table caption{
				font-size: 1.6em;
				margin-bottom: 30px;
			}
		</style>
		<meta charset="UTF-8">
		<title>后台管理系统--会员列表</title>
	</head>
	<body>
		<table>
			<caption>会员列表</caption>
			<tr>
				<th colspan="1" rowspan="2"><input type="checkbox"></th>
				<th colspan="4">会员基本信息</th>
				<th colspan="3">会员信息</th>
			</tr>
			<tr>
				<th>会员姓名</th>
				<th>会员头像</th>
				<th>手机号码</th>
				<th>性别</th>
				<th>会员卡号</th>
				<th>会员等级</th>
				<th>账户余额</th>
			</tr>
			<tr>
				<td><input type="checkbox"></td>
				<td>陈立杰</td>
				<td><img src="images/1.jpg" width="40px"></td>
				<td>15312132076</td>
				<td>男</td>
				<td>1076</td>
				<td>普通会员</td>
				<td>102.3</td>
			</tr>
			<tr>
				<td><input type="checkbox"></td>
				<td>宋月华</td>
				<td><img src="images/2.jpg" width="40px"></td>
				<td>15300452090</td>
				<td>女</td>
				<td>808538</td>
				<td>年费会员</td>
				<td>1205</td>
			</tr>
			<tr>
				<td><input type="checkbox"></td>
				<td>王立超</td>
				<td><img src="images/3.jpg" width="40px"></td>
				<td>15312132076</td>
				<td>男</td>
				<td>000013</td>
				<td>普通会员</td>
				<td>54</td>
			</tr>
		</table>
	</body>
</html>


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post