我正試圖減少照片下面一排名稱中的單元格之間的空間。我嘗試了所有我能找到的東西,但沒有運氣。任何人都可以告訴我如何讓這些名字靠近桌子嗎?我做了一個小提琴here。我使用的引導3.感謝如何減少表格單元之間的空間?
在HTML
<div class="container">
<div class="col-xs-12 col-md-6 col-sm-8 col-lg-6 center-block animated fadeInUp">
<div class="results">
<ul id="results">
<!-- results appear here -->
<h3>
Image title
</h3>
<div class="dark">
<a href="page.php?page_id=241"><img src="http://www.fiji.travel/sites/default/files//styles/views-large-thumbnail/public/arial-of-island.jpg?itok=KZHGX6pJ" width="600" class="img-responsive" alt=""></a>
</div>
<small>posted by:
<a href="profile.php?user_id=user_id" span="" class="">
Anderson</a></small>
<!-Make These names sit closer together--->
<table id="myTable2" border="0" cellpadding="0" cellspacing="0" class="table" style="width:auto;">
<tbody>
<tr style="\"display:none;\"">
<td valign="top"><strong><a href="profile.php?user_id=6" class="tags" style="color:">
Anderson,</a> </strong></td>
<td valign="top"><strong><a href="profile.php?user_id=9" class="tags" style="color:#3cb0fd">
James Bond,</a> </strong></td>
<td valign="top"><strong><a href="profile.php?user_id=2" class="tags" style="color:">
Julian,</a> </strong></td>
</tr>
</tbody>
</table>
<hr>
這對我所做的小提琴完美工作,但不在我的網頁上(whoch使用引導模板)。 – JulianJ