ラップされた用語の定義が後続にある場合、での使用は<dfn>
意味的に<table>
有効です<td>
か?MDNに記載されているように、これは正しい使用法ですか、<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>