在jsp页面中怎样让一个td显示到一个td的右下角
发布网友
发布时间:2022-04-29 18:22
我来回答
共3个回答
热心网友
时间:2022-05-13 08:31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
table td{
width: 200px;
height: 100px;
position: relative;
}
.mytd_div{
width: 50px;
height: 50px;
//border: 1px solid black;
position: absolute;
top: 50px;
left: 150px;
background: yellow;
text-align: center;
line-height: 50px;
}
</style>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="1">
<tr>
<td>
<div class="mytd_div">1</div>
</td>
</tr>
</table>
</body>
</html>
你可以尝试一下这段代码
如果对您有帮助别忘记采纳
热心网友
时间:2022-05-13 09:49
<style>
table {
position: relative;
}
td {
width: 100px;
height: 30px;
background: #eee;
}
</style>
<table>
<tr>
<td></td>
<td style="position: absolute;; top: 100%;"></td>
</tr>
</table>