Image inside
  • tag
  • 前端 未结 1 1833
    萌比男神i
    萌比男神i 2021-02-08 00:41

    I have a question about floating elements inside of

  • tag.

    I have following markup

  • 相关标签:
    1条回答
    • 2021-02-08 01:38

      I would rewrite your example like this:

      <li>
          <div style="float: left;">
              <img src="concept-truck.jpg" alt="2013 Toyota Tacoma" id="itemImg">
          </div>
          <div style="float: left;">
              <p>2013 Toyota Tacoma</p>
              <p>Price : 450000$</p>
              <p>Year : 2013</p>
              <p><a href="/item/index/63">more</a></p>
          </div>
          <div style="float: none; clear: both;"></div>
      </li>
      

      This is written with inline-style CSS attributes, which I usually tend to avoid, but as in your example, I wrote it like you did - inline.

      0 讨论(0)
    提交回复
    热议问题