CSK
CSK

Reputation: 619

How to align ag-grid table to the center of the sceen

I am new to Ag-Grid Angular, I have created the agGrid table and set width: 800px and height: 500px, but the table is aligned in the left side. Can anyone tell me how to center align tables.

Upvotes: 0

Views: 161

Answers (1)

Vishnu Prabhu
Vishnu Prabhu

Reputation: 129

Add margin: auto in style attribute of ag-grid-angular.

<ag-grid-angular style="width: 500px; height: 200px; margin: auto;" class="ag-theme-alpine" [rowData]="rowData" [columnDefs]="columnDefs">
</ag-grid-angular>

Upvotes: 1

Related Questions