IMG和TD的CSS宽度/高度

时间:2013-07-30 15:05:01

标签: html css parsing height width

  

我在css中遇到问题,我有一个宽度为100px的TD;和身高:100px;在它里面,我有一个宽度和高度相同的img元素(100px,100px)。   问题是TD会自动调整为145px宽度和114 px高度。

     

如果有人知道为什么,以及如何解决它,请帮助我! (如果我不需要增加我的TD尺寸,我的图像必须是100 * 100会很棒)   这个问题已经解决了,我曾评论过那部分CSS。但是我的图像现在放在我的文本标题下和标题中。

这是HTML

<div id="pixelContent">
        <table id="pixelContentTable">
        <tr valign=center>
            <td id="imageTD" rowspan=2>
                <a href=""><img src="" id="contentImage" border="0" width="100px" height="100px"></a></td>
            <td id="titleTd">Title here</td>
        </tr>
        <tr valign=center>
            <td id="descTd">Lorem ipsum dolor sit amet, <a href="http://google.com"> nunc in sapien gravida</a> eleifend. Maecenas consectetur, risus id lobortis molestie, magna sapien ullamcorper justo, ultrices </td>
        </tr>
        </table>
    </div>

CSS:

#pixelContentTable{
margin: 0 auto;
width:400px;
height:120px;
text-align:left;
}

#contentImage{
margin-left:10px;
width:100px;
height:100px;
min-width:100px;
min-height:100px;
max-width:100px;
max-height:100px;
}



  #imageTD{
    width:100px;
    height:100px;
    min-width:100px;
    min-height:100px;
    max-width:100px;
    max-height:100px;
  }

1 个答案:

答案 0 :(得分:4)

这样做:

<table>
  <tr>
    <td>
      <img src="" alt />
    </td>
  </tr>
</table>

和CSS:

img {
  width: 100px;
  height: 100px;
  display: block;
}

td {
  border: 1px solid red;
  width: 100px;
  height: 100px;
  padding: 0;
}

http://codepen.io/Chovanec/pen/otaFb