我可以在HTML5中的span标签中使用div标签吗?

时间:2015-03-02 05:34:26

标签: html html5

<a id="speakerPressingAnch" name="speakerPressingAnch">
                    <span id="speakerPressingButton" class="icon-speakerPressing"></span>

<!--  I have used div tag here -->
    <div class="clear"></div>

我在这里使用div标签如下:

<span id="speakerPressingtext">Push <br>  To  <br> &nbsp;Talk </span> &nbsp; &nbsp;
<!--                <img id="speakerPressingButton" src="" />-->

                </a>

1 个答案:

答案 0 :(得分:0)

它无效,你永远不需要这样做。

您无法将div元素放入span元素中。因为divblock类型元素而spaninline类型元素。

我认为无需将div元素放入span元素中。