如何停止前端显示html?

时间:2019-03-06 08:32:36

标签: html css wordpress

我有:

br/label

<br><label>,hone<label>

显示在我的网站的前端。

它是插件的一部分,我无法在已加密的源代码中找到它。

是否有隐藏指令?

1 个答案:

答案 0 :(得分:1)

在父元素上设置display:none

编辑:根据您的评论,这是HTML中的错误。检查HTML中的以下代码行:

<a href="http://maps.google.com/?q=:<br/><label>Location:</label> London, UK"> 
  <div class="location"><br/><label>Location:</label> London, UK</div>
</a>        

URL中注入了HTML。您必须删除它。如果查询网址错误,则无法将其从Google Maps中删除。您的HTML应该是

<a href="https://www.google.com/maps/search/London"> 
  <div class="location"><br/>
    <label>Location: London, UK</label> 
  </div>
</a>