Unplanned
Last Updated: 01 Oct 2025 13:07 by Babu
Babu
Created on: 01 Oct 2025 13:07
Category: WordsProcessing
Type: Bug Report
1
WordsProcessing: Width property defined in style is not respected in the <colgroup> <col> element

When imported in the WordsProcessing model, the current HTML doesn't respect the defined column width and all columns have identical width:

    <colgroup>
        <col span="1" style="width: 33.3302%;">
        <col span="1" style="width: 17.5658%;">
        <col span="1" style="width: 49.104%;">
    </colgroup>

Observed result:

Expected result:

Workaround: use the width property as follows:

    <colgroup>
        <col span="1" width="33.3302%">
        <col span="1" width="17.5658%">
        <col span="1" width="49.104%">
    </colgroup>
0 comments