Spacing between multiple tables

Hi,

I have 3 tables in one page,when I see the result, all 3 tables are connected together and it looks like one big table. Is there a way to set spaces among those 3 tables?

Here is my code:

New-UDTable -Data $PC_Inactive -ShowSort -Title “Inactive Systems(30 Days)”
New-UDTable -Data $PC_BBB -ShowSort -Title “BBB”
New-UDTable -Data $PC_CCC -ShowSort -Title “CCC”

Thanks!

You can use a div to give some space.

New-UDElement -tag 'div' -attributes @{
    style = @{ 
        height = '10px'
    }
}

that worked! thank so much @adam