我在 a 中放置了一个p
标签td
,如下所示:
<html>
<head>
<title></title>
</head>
<body>
<table>
<tr>
<td style="font-size: 16px;"><p>Hello</p></td>
</tr>
</table>
</body>
</html>
默认边距已从p
标签中消失。为什么会这样,我怎样才能取回默认的p
标签边距?
我认为这与标签边距所基于的font-size
非级联有关,但这并没有帮助。p
em
我不想直接给p
标签添加边距,还有其他方法吗?