Bootstrap 3 Align Text To Bottom of Div

前端 未结 5 1789
-上瘾入骨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:57

    You can do this:

    CSS:

    #container {
        height:175px;
    }
    
    #container h3{
        position:absolute;
        bottom:0;
        left:0;
    }
    

    Then in HTML:

    Logo

    Some Text

    EDIT: add the <

提交回复
热议问题