如何将超链接放在同一行?

时间:2016-10-26 13:41:27

标签: html

我只是想知道如何在文本后添加超链接:

如果您需要有关PCSE的更多信息,请访问PCSE网站的常见问题解答部分.-(HYPERLINK HERE)

<div class="panel-body">
<p>If you require any further information on PCSE, please visit the FAQ section of the PCSE website.-</p> <a href="http://pcse.england.nhs.uk/help/"></a>
</div>

由于

3 个答案:

答案 0 :(得分:2)

您要结束<p>,然后添加<a>。如果您在<a>中加入<p>,则应该没问题。

<div class="panel-body">
<p>If you require any further information on PCSE, please visit the FAQ section of the PCSE website.- <a href="http://pcse.england.nhs.uk/help/"></a></p>
</div>

答案 1 :(得分:0)

好吧,如果div很大,那就不应该从开始就打破。

接下来,不要使用&#34; - &#34;。短划线字符用于打破线条 Instear,使用非破坏的字符: -

答案 2 :(得分:0)

您需要将<a></a>标记放在<p>...</p>标记内。 在您的情况下,解决方案将如下所示:

<div class="panel-body">
     <p>
         If you require any further information on PCSE, please visit the FAQ section of the PCSE website.- <a href="http://pcse.england.nhs.uk/help/"></a>
     </p>
</div>