To vertically align the text applied this technique:

adress_wrap { display: table; } .adress_wrap span { display: table-cell; vertical-align: middle; } 

It works in chrome, but not in firefox. Tell me, please, how to fix enter image description here enter image description here

    1 answer 1

    instead of min-height use height

    Example

     .adress_wrap { display: table; height: 65px; border: 1px solid #ccc; } .adress_wrap span { display: table-cell; vertical-align: middle; } 
     <div class="adress_wrap"> <span>вертикально выровнять текст</span> </div> 

    • Thanks, helped! - Alexey Leshchenko