0

我有一个导航栏。水平的。

我在左边有一个图像。右边的文字。显示如下:

不是我想要的

我想拍摄图像,使其位于文本下方,因此基本上图像需要在文本左侧下方滑动一点。如下图所示:

我多么想要

我当前的 HTML 是:

<p class="menu_text">
    <img class="tgss_icon" src="http://www.thegoldservicescholarship.co.uk/images/icon.jpg" alt="TGSS Icon"/>
    <a class="menu_links" href="contact_us.php">Contact Us</a>
</p>​

我当前的 CSS 是:

img.tgss_icon{
  height: 30px;
  width: 35px;
  padding-bottom: 7px;
}

a.menu_links:link { color: #58595B; text-decoration: none;}
a.menu_links:visited  { color: #58595B; text-decoration: none; }
a.menu_links:active { color: #E6BD13; text-decoration: none; }
a.menu_links:hover  { color: #E6BD13; text-decoration: none; }

p.menu_text{
  font-size: 15pt;
  /*color: #58595B;*/
}​

提前致谢!克里斯。

4

1 回答 1

3

您可以在链接上使用负边距来执行此操作。

a.menu_links { margin-left: -20px; }

演示

于 2012-11-13T17:32:20.593 回答