Fixed column widths on a table

Product: PowerShell Universal
Version: 5.1.0

When searching or filtering a table, the browser resizes the columns based on the updated (currently viewed) data.

Is it possible to disable this so the columns are consistently positioned? I know I can set -width but unfortunately this doesn’t seem to take a percentage value which would be the ideal solution.

Another CSS fix… need to add the style to the UD Column tables. For some reason very long columns don’t truncate even with the parameter set but for the most part it works well.

$columns = @(
    New-UDTableColumn -Property Name -Style @{'width' = '25%'}
    New-UDTableColumn -Property Type -Style @{'width' = '25%'}
)