如果包装术语的定义在随后的 中,使用<dfn>
in 在语义上是否有效?如MDN 所述,这是正确使用还是必须在段落或定义列表中专门使用。我想像这样格式化我的列表:<table>
<td>
<dfn>
我的逻辑说应该允许使用以下代码:
<table>
<tr>
<td><dfn>Attack</dfn></td>
<td>Time (in ms) before the compressor will begin to work after the audio level goes beyond the threshold.</td>
</tr>
<tr>
<td><dfn>Release</dfn></td>
<td>Time (in ms) before the compressor will cease to work after the audio level drops beneath the threshold.</td>
</tr>
<tr>
<td><dfn>Ratio</dfn></td>
<td>The amount of compression to be applied.</td>
</tr>
<tr>
<td><dfn>Threshold</dfn></td>
<td>A level in dB which, if the signal surpasses, the compressor will begin working.</td>
</tr>
</table>