Re: Power Automate How to aligh different columns differently in Creat HTML table
Dear Bof,
Thank you for the support,
Can you tell me where i need to put this. Its a create HTML table in power automate and after creating this i have a process for formatting this HTML table which code is . Kindly let me know how it will work
<style>
table, th, td {
border: 1px solid white;
text-align: center;
border-collapse: collapse;
}
td {
background-color: #C0C0C0;
}
th {
background: #000000;
}
td {
font-size: 10px;
color: #000000;
}
th {
font-size: 12px;
color: white;
}
td{
'<td>AMOUNT</td>',
'<td style="text-align: right;">AMOUNT</td>'
}
</style>