CSS写的简单表格示例

所属分类: 网页制作 / CSS 阅读数: 910
收藏 0 赞 0 分享
 

复制代码
代码如下:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content_Type"
content="text/html";charset=utf-8>
<title>个人信息登记</title>
<style>
caption{height:50px;font-size:30px;font-weight:bold;}
table{border:1px solid gray;
border-collapse:collapse;
margin:100px auto;}
th{height:60px;width:130px;
border:1px solid gray;
background-color:#D6D3D6;}
.topleft{width:120px; background-color:#C6C7C6;}
td{height:60px;width:130px;
border:1px solid gray;
background-color:#C6C7C6;
text-align:center;}
.t1{width:120px; background-color:#BDBABD;}
#out1{border-top:60px solid transparent;
border-left:60px solid #BDBABD;
height:0px;width:0px;
position:relative;
float:left;}
#out2{border-top:30px solid #D6D3D6;
border-left:120px solid transparent;
height:0px;width:0px;
}
#in1{position:absolute; width:50px; top:-60px; left:10px;}
#in2{position:absolute; width:50px; top:-30px; left:-10px;}
#in3{position:absolute; width:50px; top:-20px; left:-60px;}
body{background-color:#123456;}
</style>
</head>
<body>
<table>
<caption> 个人信息登记 </caption>
<tr>
<th class="topleft">
<div id="out1">
<div id="in1">类别</div>
<div id="in2">内容</div>
<div id="in3">姓名</div>
</div>
<div id="out2"></div>
</th>
<th>年级</th>
<th>性别</th>
<th>专业</th>
<th>特长</th>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
<tr>
<td class="t1">
<input type="text" size="12" value="请输入你的名字">
</td>
<td>
<select>
<option>2011</option>
<option>2012</option>
<option>2013</option>
</select>
</td>
<td>
<input type="radio" name="sex">男
<input type="radio" name="sex">女
</td>
<td>
<select>
<option>计科</option>
<option>信管</option>
<option>信技</option>
</select>
</td>
<td>
<textarea rows=2 cols=10>
</textarea>
</td>
</tr>
</table>
</body>
</html>
更多精彩内容其他人还在看

CSS3实现背景透明文字不透明的示例代码

这篇文章主要介绍了CSS3实现背景透明文字不透明的示例代码的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

浅谈CSS中的尺寸单位

这篇文章主要介绍了浅谈CSS中的尺寸单位的相关资料,浏览器的兼容性越来越好,移动端基本是清一色的webkit,经常会用到css的不同尺寸/长度单位,这里做个整理。感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

CSS中有些属性的前面会加上“*”或“_”所代表的意思

这篇文章主要介绍了CSS中有些属性的前面会加上“*”或“_”所代表的意思,需要的朋友可以参考下
收藏 0 赞 0 分享

CSS 设置滚动条样式的实例代码

这篇文章主要介绍了CSS 设置滚动条样式的实例代码,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧
收藏 0 赞 0 分享

纯CSS制作各种各样的网页图标(三角形、暂停按钮、下载箭头、加号等)

这篇文章主要介绍了纯CSS制作各种各样的网页图标(三角形、暂停按钮、下载箭头、加号等)的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

纯css实现多级折叠菜单折叠树效果

这篇文章主要介绍了纯css实现多级折叠菜单折叠树效果,运用checkbox的checked值来判断下级栏目是否展开,通过css3选择器提供的checked伪类来实现此效果,感兴趣的朋友参考下吧
收藏 0 赞 0 分享

CSS Grid 网格布局全解析

这篇文章主要介绍了CSS Grid 网格布局全解析的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

css flex 弹性布局详解

这篇文章主要介绍了css flex 弹性布局详解的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

CSS3 二级导航菜单的制作的示例

这篇文章主要介绍了CSS3 二级导航的制作的示例的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

使用css禁用input、checkbox、select等html控件实现disable效果

这篇文章主要介绍了使用css禁用input、checkbox、select等html控件实现disable效果,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多