我想知道如何在上面的例子中构建html:
1 - )
<h1>My Title</h1>
<a href="#">My
<span class="hide">Button</span>
</a>
&#13;
2 - )
<h1>My Title</h1>
<a href="#">
<span>My<span>
<span class="hide">Button</span>
</a>
&#13;
我有这个疑问,如果我也应该将My放入span标签中。
答案 0 :(得分:1)
没有span标记,它将起作用。
<h1>My Title</h1>
<a href="#">My
<span class="hide">Button</span>
</a>
如果您愿意,可以放置span标签。但不需要那样做。
您忘记关闭<span>
的第二个html代码中的my
代码。
<h1>My Title</h1>
<a href="#">
<span>My</span>
<span class="hide">Button</span>
</a>
答案 1 :(得分:0)
div是一个块级别,意思是它自己独立的line.where类型为inline.and是一个定义超链接的标记
其中div用于包装大部分信息,span用于较小部分信息/ Text和“a”用于超链接。 有关更多信息,请参阅Html Working Draft
在你的代码中: -
<h1>My Title</h1>
<a href="#">
<span>My</span>
<span class="hide">Button</span>
</a>
进行此更改。