How to put img inline with text

后端 未结 3 1150
日久生厌
日久生厌 2020-12-03 09:44

I have this code:

Text input

\"im
3条回答
  •  萌比男神i
    2020-12-03 10:28

    This should display the image inline:

    .content-dir-item img.mail {
        display: inline-block;
        *display: inline; /* for older IE */
        *zoom: 1; /* for older IE */
    }
    

提交回复
热议问题