-
Is there a way to remove the border in the table column header? I want to override it with border:0 just like using table HTML tag normally but in blueprintjs it's using div tag instead. How can I override it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Are you referring to the Table component from the If you want to apply custom styling, you'll need to inspect the rendered DOM, find the relevant CSS selectors for the "border" appearance, and override them with custom styles. There are no guarantees that this won't break table layout logic if you change the layout & sizing of the Table component. |
Beta Was this translation helpful? Give feedback.
Are you referring to the Table component from the
@blueprintjs/table
package?If you want to apply custom styling, you'll need to inspect the rendered DOM, find the relevant CSS selectors for the "border" appearance, and override them with custom styles. There are no guarantees that this won't break table layout logic if you change the layout & sizing of the Table component.