.table, th, td {
border: solid #000000;
border-collapse: collapse;
border-width: 3px;
}
.th, td {
border-width: 3px;
font-family: Open Sans;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table style="width:100%" "float:left" class="table">
<tr>
<th align="center" bgcolor="#def2d9" colspan="3">1 STARTER</th>
</tr>
<tr>
<th></th>
<th>Users</th>
<th></th>
</tr>
<tr>
<td>M00</td>
<td align="center">1</td>
<td>Base Package</td>
</tr>
<tr>
<td>SP40</td>
<td align="center">NA</td>
<td>Training</td>
</tr>
<tr>
<td align="justify" colspan="3"><p><b>PRICE:</b> 9 900,00€
<p>+
<p>131,67€
<p>Monthly Subscription</td>
</tr>
</table>
</body>
</html>
Good afternoon,
I've been here a few hours to research how I can solve this problem. I have a table and in the last line I put the price of the product, where "PRICE:" needs to be aligned to the left and the value needs to be aligned to the right, this in the same line. I'll leave here the HTML and CSS.