Hi everyone,
I am frustrated by this problem. So when I manually insert a table in outlook and sent it. And if the column content is too long(like the forth column in the image below) it exceed the size of email window. it will just provide me with a horizontal scroll bar and maintain the original table size and layout.

And that's what I want. But now when I using flow and the select-compose action to insert table in to the email, the table is always auto fitted to the email window size. It means when my table is bigger than email window width, instead of maintain the table structure and give me a scroll bar, it squeezes the column width and make each cell much longer in height. This makes it look like below image. The structure of the 4th column is completely destroyed.

Below is my compose action code for the table format. I didn't find anything there suggest that I tagged on auto fitting. Help please, help. how can I make that table behaviors like the table we can manually created in outlook.
<style>
table {
border: 1px solid #1C6EA4;
text-align: left;
border-collapse: collapse;
}
table td, table th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
table tbody td {
font-size: 11px;
}
table thead {
background: #1C6EA4;
border-bottom: 2px solid #444444;
}
table thead th {
font-size: 11px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
table thead th:first-child {
border-left: none;
}
</style>