我想連續呈現多個圖像,即使他們是一個列表 的所有項目在此刻我的UI看起來像這樣 代替 具有轎車之一旁邊。列表樣式:無無法正常工作
我的CSS是
li{
width: 19em;
}
#tripList ul,li {
list-style: none;
}
#tripList ul {
overflow: hidden;
padding: 3em;
}
#tripList ul li span {
display: inline-block;
height: 15em;
width: 19em;
padding: 1em;
}
和我的HTML代碼是:
<div id="tripList">
<ul>
<% @trips.each do |trip| %>
<li >
<span>
<p class="remove-icon">
<%= link_to '×'.html_safe, trip, method: :delete, data: { confirm: 'Are you sure you want to delete ' + trip.trip_name + '?' } %>
</p>
<div class="carImg">
<p class ="carText"><strong><%= link_to trip.trip_name, trip %></strong></p>
</div>
<p>
<strong>Trippers:</strong> <%= trip.users.collect {|user| user.name }.to_sentence %>
</p>
</span>
</li>
<% end %>
</ul>
</div>
謝謝您的幫助
您是否嘗試過讓李的inline-block的? –
如果你不需要項目符號列表,爲什麼使用項目符號列表元素'ul'? –