How to put img inline with text

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

I have this code:

Text input

\"im
相关标签:
3条回答
  • 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 */
    }
    
    0 讨论(0)
  • 2020-12-03 10:35

    Images have display: inline by default.
    You might want to put the image inside the paragraph.
    <p><img /></p>

    0 讨论(0)
  • 2020-12-03 10:35

    Please make use of the code below to display images inline:

    <img style='vertical-align:middle;' src='somefolder/icon.gif'>
    <div style='vertical-align:middle; display:inline;'>
    Your text here
    </div>
    
    0 讨论(0)
提交回复
热议问题