Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 362 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 362 Bytes

noodl-table-module

Simple table module for Noodl

This module adds new nodes that corresponds to table, thead, tbody, tr and th/td. Use the CSS node to style the table specific elements.

Note: You need to use this css in a Css node in order to get correct sizing of child nodes and table rows.

th > div, td > div {
    position: static !important;
}