Hallo,
ich habe ein ähnliches Problem und möchte den Inhalt einer Tabellenzelle (oder besser gesagt den letzten Teil des Inhalts) am unteren Rand der Zelle ausrichten.
Das hab ich in der Zelle stehen:
<img src="http://... />
<p <span class="box-title"> ...<br /> ... </span></p>
[asa test]B0091EJWWS[/asa]
<p <span class="box-buttons"> <a class="intern_button" href="http://.../">...</a> <a class="amazon_button" href="..." target="_blank" >Shop</a></span></p>
Und das in der css:
.tablepress .column-1,
.tablepress .column-2,
.tablepress .column-3,
.tablepress .column-4 {
width: 174px;
height: 280px;
}
.tablepress td,
.tablepress th {
padding: 0 0;
}
.tablepress img {
margin: 20px 0 10px;
box-shadow: none;
}
/* Zentrieren von Text */
.tablepress .column-1,
.tablepress .column-2,
.tablepress .column-3,
.tablepress .column-4 {
text-align: center;
}
.tablepress {
border-collapse: separate;
border-spacing: 20px;
background-color: none;
}
.tablepress thead th,
.tablepress tfoot th {
background-color: #FFFFFF;
}
/* Sichtbarer Rahmen um Tabellen herum */
.tablepress tbody td,
.tablepress thead th,
.tablepress tfoot th {
box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.tablepress tbody tr:first-child td {
border: 1px solid #EDEDED;
}
.box-title {
color: #532D20;
text-align: center;
font-size: 12px;
font-weight: bold;
margin: 0 auto 10px !important;
}
.asa_product_box {
margin: 0 auto 15px;
}
.box-buttons {
text-align: center;
vertical-align: bottom;
margin: 0 auto;
line-height: 0;
}
.entry-content p {
margin: 0 0;
}
Das unterste Element sind zwei nebeneinanderliegende Buttons. Diese möchte ich gerne am unteren Zellenrand ausrichten. Sodass sie immer dort kleben bleiben. Kann man das über den css-code lösen?
Vielen Dank für eure Hilfe!