How to vertically center a sort icon when a column has rowspan
How to vertically center a sort icon when a column has rowspan
beetlikeyg087
Posts: 1Questions: 1Answers: 0
I want to vertically align center the sort icon of the column product id,
How can I achieve this?
This discussion has been closed.
Answers
If you right click and select "Inspect" on that element, you'll find that the icon is placed using an
:after
pseudo element with absolute positioning.You could perhaps set its
bottom
position to be 18px (you'll need to adjust the exact amount based on your table styling - which looks like it is Bootstrap 3).Allan