我有一个行和一个单元格的表。在那个单元格中有一些文本和另一个表格。我期待的是内部表格应该右边是文本,但它会进入下一行。如何实现那个?
这是我的代码......
<!DOCTYPE HTML>
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<table border="1">
<tr>
<td>
Here is some text
<!-- Inner Table. This table should come at right to the above text-->
<table style="border:1px solid blue;">
<tr>
<td>1</td>
<td>Krish</td>
</tr>
<tr>
<td>2</td>
<td>Alex</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:1)
您应指定 float:right
或 float:left
根据您的HTML,将 float:right
指定为
<table style="border:1px solid blue;float:right;">