How to align text in HTML to align with each other?
P粉481366803
P粉481366803 2023-09-13 19:09:54
0
1
595

I'm trying to create this for my current code, how do I do it? Here is a price calculator, I need an example before I start coding [1]: https://i.stack.imgur.com/2xE4f.png

<div class="grid-item">
        <thead>
          <td>App-Benutzer</td><br>
          <td>pro 7,50€</td><br>
          <td>Backend-Benutzer</td><br>
          <td>pro 35,50€</td><br>
        </thead>
        <hr>
        <span class='summe'>0.00</span><br>
        </div>

P粉481366803
P粉481366803

reply all(1)
P粉256487077

Try the code below. You can create your details as a form

<!DOCTYPE html>
<html>
<style>`
table, th, td {
  border:1px solid black;
}
</style>
<body>
<table style="width:100%">
  <tr>
    <td>App-Benutzer
    </td>
    <td>75,00€</td>
  </tr>
  <tr>
    <td>Backend-Benutzer</td>
    <td>175,00€</td>
  </tr>
</table>
</body>
</html>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template