problem
jeg har problem med de tre sidste som er remmet hvis jeg fjerner remmet så flyder de ud til siden. hvad er problemet<table class="col-10 col-s-10 company">
<h2>Firma oplysning</h2>
<?php
$sql = "select * from companyname ";
$result = $conn->query($sql) or die($conn->error);
while ($row = $result->fetch_assoc()) { ?>
<tr>
<th>Cvr</th>
<th>Thelephone</th>
<th>Companyname</th>
<th>Name</th>
</tr>
<tr>
<td class="cvr"><?php echo $row['cvr']; ?></td><br>
<td class="telephone"><?php echo $row['telephone']; ?></td>
<td class="companyname"><?php echo $row['companyname']; ?></td>
<td class="name"><?php echo $row['name']; ?></td>
</tr>
<tr>
<th>Adress</th>
<th>Zipcode</th>
<th>City</th>
<th>Email</th>
</tr>
<tr>
<td class="adress"><?php echo $row['adress']; ?></td>
<td class="zipcode"><?php echo $row['zipcode']; ?></td>
<td class="city"><?php echo $row['city']; ?></td>
<td class="email"><?php echo $row['email']; ?></td>
</tr>
<tr>
<th>Bankname</th>
<th>Banknumber</th>
<th colspan="2">CompanyLicensecode</th>
<td class="bankname"><?php echo $row['bankname']; ?></td>
<td class="banknumber"><?php echo $row['banknumber']; ?></td>
<td class="companyLicensecode"><?php echo $row['companyLicensecode']; ?></td>
<td></td>
</tr>
<?php } ?>
</table>