结构标签和按钮内的文本

时间:2015-10-16 04:17:06

标签: html

我想知道如何在上面的例子中构建html:

1 - )



 <h1>My Title</h1>
    <a href="#">My
     <span class="hide">Button</span>
    </a>
&#13;
&#13;
&#13;

2 - )

&#13;
&#13;
 <h1>My Title</h1>
    <a href="#">
      <span>My<span>
      <span class="hide">Button</span>
    </a>
&#13;
&#13;
&#13;

我有这个疑问,如果我也应该将My放入span标签中。

2 个答案:

答案 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>

进行此更改。