Hello
I have a flow in Power Automate where I create a table. I have used an action to insert CSS to format the table. I would like to make a few modifications:
Could you explain how to do this?
Thank you
Hi @kaoutar,
Do you mean the text within those columns (in other words, text-align)?
In that case you can probably use the nth-child selector for each of these columns, https://www.w3schools.com/cssref/sel_nth-child.php
For example if Non payé is the second column in your table you could use the below to change the text-align property value.
table td:nth-child(2) {
text-align: right;
}
WarrenBelz
146,660
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,004
Most Valuable Professional