How to align an <a>
tag with the <details>
tag in the same line.
For example i want space with <details>
in one row. But, if you do so the <details>
is going to the next line.
Is there any solution?
<table>
<tr>
<td>
<a>Some Text</a>
<details>
<summary></summary>
</details>
</td>
</tr>
</table>