Bootstrap 3 Align Text To Bottom of Div

前端 未结 5 1796
-上瘾入骨i
-上瘾入骨i 2020-12-03 02:22

I\'m trying to get a setup in Bootstrap that would look something like this, where I have text aligned with the bottom of an image:

=========================         


        
5条回答
  •  星月不相逢
    2020-12-03 02:50

    Here's another solution: http://jsfiddle.net/6WvUY/7/.

    HTML:

    Logo

    Some Text

    CSS:

    .row {
        display: table;
    }
    
    .row > div {
        float: none;
        display: table-cell;
    }
    

提交回复
热议问题