Ranga chimalgi
Ranga chimalgi

Reputation: 31

How to align column header with data(checkbox header and checkbox data) in react table using semantic ui react

How to align 1st column (checkbox header and checkbox data) in react table using semantic ui react

Table consists of 3 columns for now

<Table.Body> .map((el) => { return ( <Table.Row key={el.report_ref_no}> <Table.Cell> {" "} {" "} </Table.Cell>

Upvotes: 0

Views: 246

Answers (1)

Maddy
Maddy

Reputation: 48

Use this CSS verticalAlign = 'middle' textAlign = 'center'

Upvotes: 1

Related Questions