html中的Web链接是否重复自身?

时间:2016-11-25 04:57:02

标签: html openerp odoo-website

Newb at html and web ...除了使用之外的任何东西。我甚至不确定这是这个问题的正确论坛。

我在html中为我插入页面页脚的容器(图像和文本)放置了一个链接。

我插入了链接的代码以包围容器那部分的图像和文本部分。

<div class="blah blah"
   <a href="etc.etc">
      <img

继续,直到最后一行文字

    </a>
</div>

很好,干净,链接包含图像和两行文字。

我检查一小时后,现在每一行文字和图像都会单独重复链接信息,并且在文本行之间奇怪地重复了这一点。

如果我没记错的话,使用odoo运行网站,基于bootstrap。

为什么要重复复制链接信息?

它工作正常,在编辑代码时只是丑陋,而且我不确定我是否做错了导致它发生。

编辑: 这是当前的代码,显然是自我重复:

<div class="col-md-4 text-center">
    <a href="http://edited/" target="_blank" title="edited&#10;http://edited/">
        <img class="fa-suitcase img-rounded" src="/website/image/ir.attachment/1143_1cc91ea/datas" style=""/>
    </a>
    <h3 class="mt8 mb0">
        <a href="http://edited/" target="_blank" title="edited&#10;http://edited/">
            <span style="color:#FFFFFF;">edited</span>
        </a>
    </h3>
    <a href="http://edited/" target="_blank" title="edited&#10;http://edited/"></a>
    <div class="text-muted">
        <a href="http://edited/" target="_blank" title="edited&#10;http://edited/">
            <span style="color:#D3D3D3;">edited</span>
        </a>
    </div>
    <a href="http://edited/" target="_blank" title="edited&#10;http://edited/"></a>
</div>

最初进入时,就是这样:

<a href="http://edited/" target="_blank" title="edited&#10;http://edited/">
  <div class="col-md-4 text-center">
    <img class="fa-suitcase img-rounded" src="/website/image/ir.attachment/1143_1cc91ea/datas" style=""/>
    <h3 class="mt8 mb0">
      <span style="color:#FFFFFF;">edited</span>
    </h3>
    <div class="text-muted">
      <span style="color:#D3D3D3;">edited</span>
    </div>
  </div>
</a>

0 个答案:

没有答案