Using "white-space: nowrap" within the table

Hello,
“white-space: nowrap;” in a cell within an HTML table I use it but it doesn’t work

<table>
	<tr>
		<td>&nbsp;</td>
		<td style="white-space: nowrap;">
			<div style="float: left;">Previous text</div>
			<div style="float: right;">Next text</div>
		</td>
		<td>&nbsp;</td>
	</tr>
</table>

try this

<td style="white-space: nowrap; display: flex; justify-content: space-between;">

Left and right justification disabled
I want to align left and right in the cell

I added another column to the table and this is how I solved the problem.

Thank you

Sponsor our Newsletter | Privacy Policy | Terms of Service