cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi All,

in a cell with an text-object the css-format

text-align:center;  works

but

vertical-align:middle; does not work

Is there any way to bring the text vertical in the middle?

thx for hints

br harry

0 Likes
View Entire Topic
Former Member
0 Likes

Hi Harald,

This seems an old post however noticed that you have not marked as "Answered"

The below script in CSS seems to work perfectly fine for me

   display: flex;
justify-content: center;
flex-direction: column;
height: auto;

Below are some additional links explaining this in detail. Hope this helps

https://css-tricks.com/centering-css-complete-guide/

Centering in the Unknown | CSS-Tricks

Regards,

Premdas