How to align a label to the “BOTTOM” of a div in CSS?

后端 未结 8 2183
太阳男子
太阳男子 2020-12-03 06:08

DEMO can be found at:

http://www.bootply.com/VZ7gvA7ndE#

I set the height of div to 100px and want to show the label at the bottom

8条回答
  •  失恋的感觉
    2020-12-03 06:57

    Try to do following

    FIDDLE DEMO

    #contain-word-lab {
        vertical-align='bottom';/***Remove This***/
        bottom:2px;
        position:absolute;
    }
    

提交回复
热议问题