创建HTML链接会产生意外结果

时间:2014-10-01 18:03:27

标签: html css hyperlink href

我需要帮助弄清楚当我在这段代码中添加链接时它为什么会改变我的整个div块。

这就是页面的样子:

Leaderboard page

一旦我将文本设为链接,它就会向底部添加大约8px(注意图像小于div块的方式)。

我该怎么做才能让它看起来像我的所有其他块?

更新:我相信我找到了导致问题的代码,它位于正文的CSS中。有一种线高在线高的样式:1.625; - 当我删除它时,它解决了问题。但是现在我想知道如何在不影响网站其他部分的情况下为我的页面删除此代码?

问题是CSS:

body {
color: #3B3F42;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1em;
line-height: 1.625;
}

以下是编码的其余部分



    .ratingWrapTopRated {
      background: #fff;
      width: 100% !important;
      height: 90px !important;
      margin: 0 auto;
      display: table;
      font-family: Helvetica, Arial, sans-serif;
      margin-bottom: 10px;
    }
    .cigarImage {
      background: #fff;
      color: #fff;
      display: table-cell;
      line-height: 0;
      width: 90px;
      padding-right: 4px;
    }
    .cigarName {
      background: #ff5100;
      color: #fff;
      text-align: center;
      display: table-cell;
      vertical-align: middle;
      word-spacing: 6px;
      text-transform: uppercase;
      font-size: 1.2em;
      padding: 0px 3px 0px 3px;
    }
    .numericalScoreTopCigars {
      background: #000;
      color: #fff;
      text-align: center;
      width: 25%;
      display: table-cell;
      font-size: 4.9em;
      letter-spacing: 3px;
      vertical-align: middle;
      font-weight: bold;
      border-left: 4px solid;
      border-color: #fff;
      line-height: 0;
    }
    a.ratingsLink:link {
      text-decoration: none;
      background: #ff5100;
      color: #fff;
      text-align: center;
      vertical-align: middle;
      word-spacing: 6px;
      text-transform: uppercase;
      font-size: 1em;
      padding: 0px 3px 0px 3px;
    }

 <span class="ratingWrapTopRated">
    <span class="cigarImage hidebuttons"><img class="alignnone size-thumbnail wp-image-2352" src="http://cigardojo.com/wp-content/uploads/2012/08/padron-serie-1926-150x150.jpg" alt="Padron Serie 1926 No. 9 Maduro" width="150" height="150" /></span>
<span class="cigarName shortenText"><a class="ratingsLink" href="http://cigardojo.com/?p=1019">Fuente Fuente OpusX XXX Belicoso</a></span>
<span class="numericalScoreTopCigars">96</span>
</span>
&#13;
&#13;
&#13;

0 个答案:

没有答案