How can I put DIV in P?

前端 未结 6 1408
陌清茗
陌清茗 2020-11-29 08:41

How can I put div in paragraph? I changed the display to inline, but the browser divide the base paragraph to two element, and div will not member of paragraph.

6条回答
  •  攒了一身酷
    2020-11-29 09:01

    Div is a block. Span is inline. Both of them are containers. You have to set display:inline for the div with css. Of course it won't pass validation so better use span ( inline ) to achieve the same thing.

提交回复
热议问题