删除图片下方的额外空间

时间:2010-01-19 17:01:28

标签: css image

我的网站上有一张图片,图片下面有很多空间。我试图搜索额外的
标签,但我认为它是在css文件中控制的。有人能告诉我css的哪一部分对空间负责吗?

位置是:images / artikelen / 123.png

这是导致css容器的html的一部分,我认为它将包含边距。图片放在一张桌子上,我知道没有必要像这样。

图片放在名为展示2

的地方的joomla模块中
<div id="showcase-surround">
                <div id="showcase" class="png"><div id="showcase2" class="png"><div id="showcase3" class="png">
                    <div class="showcase-inner">
                        <div id="showmodules" class="spacer">
                                <div class="block full" style="width: 1004px;">
                                    <div class="module-light">

                                        <div id="row1-block2" class="row"><div class="move-handle"></div><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
    <div class="body-surround"><div class="body-surround2"><div class="body-surround3"> 

    <div class=" showcase2:82">
        <div class="moduletable">
                        <a href="/Contact-Formulier/Friese-Computer-Service.html" target="_self" title="Friese Computer Service - Computerhulp en PC probleem snel opgelost"> </a> 
<table align="center" border="0">
<tbody>
<tr>
<td><a href="/Contact-Formulier/Friese-Computer-Service.html" target="_self" title="Friese Computer Service - Computerhulp en PC probleem snel opgelost"> <img style="text-align: center;" src="/images/artikelen/123.png" /></a><a href="/Contact-Formulier/Friese-Computer-Service.html" target="_self" title="Friese Computer Service - Computerhulp en PC probleem snel opgelost"> </a></td>
</tr>

</tbody>
</table>

2 个答案:

答案 0 :(得分:2)

您可以使用Firefox浏览器及其DOM Insector Tool来查找。它是来自http://www.friesecomputerservice.nl的一段代码吗? (我只是搜索了'Friese计算机服务 - Computerhulp en PC问题':))如果是这样,那么你的http://www.friesecomputerservice.nl/templates/rt_affinity_j15/css/template.css中就有以下内容:

.moduletable
{
   ...
   marging-bottom: 15px;
   ...
}

删除margin-bottom,你就完成了。

答案 1 :(得分:1)

如果没有CSS,很难猜出发生了什么,但请尝试将其放入CSS中:

.moduletable img { display: block; }