কোনও কারণে, টেবিলের ভিতরে থাকা পাঠ্যটি এখনও কেন্দ্রিক নয়। কেন? আমি কীভাবে টেবিলের অভ্যন্তরে পাঠ্যটিকে কেন্দ্র করব?
এটি সত্যিই পরিষ্কার করার জন্য: উদাহরণস্বরূপ, আমি চাই "লরেম" চার "1" এর মাঝখানে বসে।
@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');
table,
thead,
tr,
tbody,
th,
td {
text-align: center;
}
<table class="table">
<thead>
<tr>
<th>1</th>
<th>1</th>
<th>1</th>
<th>1</th>
<th>2</th>
<th>2</th>
<th>2</th>
<th>2</th>
<th>3</th>
<th>3</th>
<th>3</th>
<th>3</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="4">Lorem</td>
<td colspan="4">ipsum</td>
<td colspan="4">dolor</td>
</tr>
</tbody>
</table>