Hello everyone, I have a problem, I can't make the table appear full-width, and I can't center the text. Even though the code seems to be correct
"
<HTML>
<head>
<style>
table {
widht:100%;
}
th, td {
text-algin: center;
padding: 8px;
}
h1{color:#4CAF50;}
tr:nth-child(even){background-color: #f2f2f2}
th {
background-color: #4CAf50;
color: white;
}
</style>
</head>
<body>
<H1>Zamówienie</H1>
<table>
<tr><th>Nazwa</th>
<th>Liczba</th>
<th>Indeks</th></tr>
" & Concat(
Zamowienie_lista.AllItems;
"<tr><td>" & Nazwa & "</td><td>" & Liczba &
"</td><td>" & Ind & "</td></tr>"
) & "
</Table>
</Body>
</HTML>
"