HTML element display in horizontal line

后端 未结 4 1239
夕颜
夕颜 2021-02-19 07:08

I have two HTML elements inside a div. I want to display them in a row or a horizontal line. Let\'s say I have two images with the code shown below. How would I make it so there

4条回答
  •  醉梦人生
    2021-02-19 07:23

    Option 1

    img {
     display:inline;
    }
    

    Option 2

    img {
     display:block;
     float:left;
    }
    

    Updated to reflect current browser capabilities

    Option 3

    img {
     display:inline-block;
    }
    

    However, this will only work if there is enough horizontal space for the images in question.

提交回复
热议问题