• Hi,

    I need to add ID to the whole row. With the HTML table I can add it in a way like this here:
    <tr id="myid" data-imp-highlight-shape-on-mouseover="myid" data-imp-image-map-name="my-map">

    Is there a way to add ID “myid” to the whole row? If I select multicell then I can add CSS classes to cells but I can’t fint a way to add a ID for the row.

    Thanks,
    J.

Viewing 1 replies (of 1 total)
  • Plugin Author Aki Hamano

    (@wildworks)

    Unfortunately, it is not possible to addan id or class to the tr element.
    If you need to specify a selector in some libraries, the following approach may be possible.

    // Target all tr elements
    .wp-block-flexible-table-block-table tr
    
    // Target a specific tr element
    .wp-block-flexible-table-block-table tr:nth-child(X)
Viewing 1 replies (of 1 total)
  • The topic ‘How to add ID to the whol row?’ is closed to new replies.