对齐表行和列

时间:2014-09-21 16:36:55

标签: html css html-table alignment

我有两张桌子:

第一个表有2行4列。第一列的行跨度为2。 然而,在图片中,最后3列未与两行对齐。如何解决这个问题?

此外,该表已经制作成按列大小相同。

表2还有3列但有几行。然而,似乎前三列已被压扁在一起。有谁能看到这个问题?我想它可能在我的CSS中。

This is the image

表格的HTML:

<table class="equalDevide" cellpadding="0" cellspacing="0" width="100%" border="0">

这是第一个表格第1列第2列的HTML

<td>
            <div id="positionAnchor">
                <img src="adele.jpg" alt="Adele">
                <div id="bottom">
                    <h4 class="topText">ALBUM</h4>
                    <h3 class ="topText">ADELE 21 COVER </br> ADELE</h3>
                </div></div>
        </td>

第2行第2列

<tr id="left-col">
            <td>
                <div id="caption-color">
                    <h3 id="active">Adele 21 Album</h3>
                    <p class="music-name"><span class ="glyphicon glyphicon-headphones"> Adele - Skyfall</span></p>
                </div>
            </td>

这是随之而来的CSS:

#bottom{
position: absolute;
display: inline-block;
bottom: 0px;
left:0px;
}

#positionAnchor {
    position: relative;
 width:1px;
}



#caption-color{
background-color: #212121;
position: relative;
display: inline-block;
bottom: 0px;
padding: 5px;
float: bottom;
}

 .equalDevide td { 
width:25%; 
 }

第二个表格html:

<table class="table">
        <tbody>
            <tr>
                <td  id="left-info">
                    <span class="glyphicon glyphicon-calendar"> 17 SEPTEMBER</span>
                </td>
                <td  id="left-info">
                    <span class="glyphicon glyphicon-music" > MARTIN GARRIX</span>
                </td>
                <td  id="left-info">
                    <span class="glyphicon glyphicon-map-marker"> NEW ORLEANS,LA</span>
                </td>
                <td id="buyNow">
                    Buy Now
                </td>
            </tr>

第二个表格CSS:

table{
border-collapse: collapse;
}
tr{

background-color: #575757;
border-top: 10px solid #383D3D !important;
}

td{
border-left: 3px solid #383D3D !important;
text-align: center;
 }

1 个答案:

答案 0 :(得分:1)

匹配#caption-color CSS和positionAnchor CSS up ...

#positionAnchor {
    position: relative;
    display: inline-block;
    text-align:center; /* and center text */
}

第二张表css规则不是您的想法。

table{ ... rules for element table }
.table{ ... rules for class table }