CSS align images and text on same line

后端 未结 9 1099
长情又很酷
长情又很酷 2020-12-05 06:16

I have been searching and trying different methods for hours now. I just can\'t seem to get these two images and text all on one line. I want both the images and both text

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 07:09

    You can either use (on the h4 elements, as they are block by default)

    display: inline-block;
    

    Or you can float the elements to the left/rght

    float: left;
    

    Just don't forget to clear the floats after

    clear: left;
    

    More visual example for the float left/right option as shared below by @VSB:

    Left Text
    Right Text

提交回复
热议问题