我发现了很多相关的问题,但似乎没有像我想要的那样工作。我想将 id="bob" 的图像居中放在我的 DIV 底部。
我的 HTML 如下:
<table id="newsTable" width="100%" border="1">
<thead>
<tr>
<th>
<div onClick="openClose('2006')" style="cursor:hand; cursor:pointer">
Title
<img id="20062" src="images/play.png" style="float:right;">
</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div id="2006" class="texter">
<h2>Subtitle</h2>
<img src="images/image.jpg" style="float:right;">
<p>
Some text
</p>
<div class="album">
<div class="album-content">
<img id="bob" src="images/picture.jpg">
</div>
</div>
<img style="float:left;" id="prev" src="images/left.gif">
<img style="float:right;" id="next" src="images/right.gif">
</div>
</td>
</tr>
</tbody>
</table>
使用以下 CSS 样式:
#newsTable {
border: 1px solid #e3e3e3;
width: 100%;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}
#newsTable td, #newsTable th {
padding: 5px;
color: #333;
}
#newsTable td {
line-height: 20px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12px;
border: 0px solid;
font-weight: bold;
}
#newsTable thead {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size:18px;
padding: .2em 0 .2em .5em;
text-align: left;
color: #4B4B4B;
background: transparant;
border-bottom: solid 1px #999;
}
#newsTable th {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-image:url(images/background_thead.jpg);
background-repeat: no-repeat;
font-size: 18px;
line-height: 25px;
font-style: normal;
font-weight: normal;
text-align: left;
text-shadow: white 1px 1px 1px;
}
.texter {
display:none
}
@media print {
.texter {
display:block;
}
}
.album {
height: 600px;
position: relative;
}
.album-content {
position: absolute;
bottom: 0;
float: none;
text-align:center;
}
我几乎尝试了所有方法,但似乎没有任何东西可以将 id="bob" 的 IMG 移动到中心。谁能告诉我 CSS 的哪一部分将图像保持在左侧?