html中,怎么让表格中的文字居中偏上
展开全部
我用了position,可能还有更好的方法吧,也是新手
<!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 content="text/html; charset=utf-8" http-equiv="Content-Type" />
<style type="text/css">
.table1{
float: left;
margin-right: 20px;
}
.table2{
float: left;
margin-right: 20px;
}
.table3{
float: left;
margin-right: 20px;
}
.box1{
position: relative;
top: -30px;
}
</style>
</head>
<body>
<table class="table1" border="1">
<tr>
<td width="200px" height="200px" align="center" valign="top">1. 文本顶部局中</td>
</tr>
</table>
<table class="table2" border="1">
<tr>
<td width="200px" height="200px" align="center">2. 文本局中</td>
</tr>
</table>
<table class="table3" border="1">
<tr>
<td width="200px" height="200px" align="center"><span class="box1">3. 文本局中偏上</span></td>
</tr>
</table>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询