CSS - 在水平列表中移动项目

时间:2009-07-09 03:22:44

标签: css

我在桌子右边放置了一个Google广告。为此,我使用CSS并将表格和广告项目放在水平列表中。代码如下。它看起来没问题,但我想将广告向下移动约25个像素,向右移动25个像素。我该怎么做?

提前致谢,

约翰

代码:

if($sum>0){

print "<ul class='horizontal_list'>";
print "<li>";

print "<table class=\"navbarb\">\n";
print "<tr>";
print "<td class='sitenameb'>".'<a type="amzn" class="links2b">'.$entry.'</a>'."</td>";
print "</tr>\n";
print "</table>\n";

//echo "<p class=\"topic3\">".'<a href="http://'.$entry.'" class="links3">'.$entry.'</a>'. "</p>\n";
echo "<p class=\"topic4\">". number_format($sum) . ' votes in total.'."</p>\n";

arsort($votes); //reverse sort preserving keys


//print "<td class='sitename'>".'<a href="http://'.$row['site'].'" class="links2">'.$row['site'].'</a>'."</td>";



foreach ($votes as $table => $votes) {
  print "<table class=\"navbar1\">\n";
  print "<tr>";
  print "<td class='sitename1'>". $table .'</a>' ."</td>";
  print "<td class='sitename2'>". number_format($votes) ."</td>";
  print "</tr>\n";
  print "</table>\n";

print "</li>";  

}

?> 

<li>
<div class="googlead3">
<script type="text/javascript"><!--
google_ad_
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</li>

一些CSS:

ul{
    margin: 0 auto;
}
ul.horizontal_list li{
    text-align: left;
    float: left;
    list-style: none;
    padding: 3px 10px 3px 10px;
    margin: 5px;`enter code here`
    border: 0px;
}   


    .googlead3
        {   
        float: right;
        margin-left:70px;
        margin-top:25px;
        margin-bottom:8px;
        padding:50px;
        }

2 个答案:

答案 0 :(得分:2)

最简单的方法是制作广告位置:相对(保留布局)并使其成为顶部:25px和左:25px

答案 1 :(得分:0)

向左侧和左侧添加25px的边距应该将其向下推。