# tableberg/1.1.5/src/table-width.scss

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 24 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/table-width.scss
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/table-width.scss
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/table-width.scss#L10-L20`.

```scss
.tableberg-table-wrapper {
    box-sizing: border-box;

    &.justify-table-left > table {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    &.justify-table-center > table {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    &.justify-table-right > table {
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    &.alignwide,
    &.alignfull {
        clear: both;
    }
}

```
