你好傢伙我的元素有一個小問題。我正在動態獲取這些元素,並且想將它們呈現爲4列布局。問題是我無法將它們包裹在div和div之間,只是顯示內聯塊並向左浮動,因爲它們就像這樣分開。使用css對齊動態生成的元素
<section data-field="box-image">
<img
src=""
width="160" height="160" alt="">
</section>
<section data-field="box-content">
<h3>Aquarius</h3>
<p>20 January - 18 February</p>
</section>
<section data-field="box-image">
<img
src=""
width="160" height="160" alt="">
</section>
<section data-field="box-content">
<h3>Pisces</h3>
<p>19 February - 20 March</p>
</section>
其實我想過使用jQuery包裹它們或JavaScript,但可以我這樣做使用CSS?
這是怎麼這個網站正在生成到我的DOM: {{#each infoContent作爲|項目|}}
<div class="col-md-12 boxes-container">
{{{item.box}}}
</div>
{{/each}}
所以這item.box產生我問有關的代碼。
簡單我想包裝每個盒子圖像和盒子內容在一個div中,所以我可以把一些CSS放在它們上面,或者如果有任何其他方式在我的圖像中呈現它們會非常好看。
{{#each infoContent爲|項|}}
什麼是創建'item.box'的代碼,你不能改變? – Pete