HTML <span>延续到下一个文本

时间:2016-06-21 19:52:56

标签: html css

我有以下代码:

<div>
      Action: 
      <span style="text-decoration: underline"> write<span>
      <span style="text-decoration: none">(disabled)<span>
</div>

即使在我明确地输入 style =“text-decoration:none” 之后,“(禁用)”字也会加下划线。

为什么会发生这种情况,如何删除“(已禁用)的下划线。

1 个答案:

答案 0 :(得分:4)

您没有关闭第一个span代码

<div>
  Action: 
  <span style="text-decoration: underline"> write</span>
  <span style="text-decoration: none">(disabled)</span>
</div>