動的コンテンツのリスト(jQuery)を生成しようとしていますが、動的コンテンツのCSSが静的コンテンツと一致しません。動的コンテンツCSSスタイルが静的コンテンツと一致しません
最初の3つの項目は、次の3は、動的であり、を
注の間の任意の間隔を有していない行い、間に小さなスペースで、それぞれ、静的である:両方が同じCSSにリンクされ
静的実装:
<div class="car-preview">
<img src="https://www.google.com/photos/about/static/images/google.svg">
<div class="car-details">
<p>Holden Commodore Blah Blah
<br><span>$10000</span></p>
<ul>
<li>10000km Driven</li>
<li>1.5L 4Cyl Petrol Engine</li>
</ul>
</div>
</div>
ダイナミック実装:
$(document).ready(function() {
for(var i = 0; i < 3; i++){
$(".filter-content").html($(".filter-content").html()
+ '<div class="car-preview">'
+ '<img src="https://www.google.com/photos/about/static/images/google.svg">'
+ '<div class="car-details">'
+ '<p>Holden Commodore Blah Blah<br><span>$10000</span></p>'
+ '<ul>'
+ '<li>10000km Driven</li>'
+ '<li>1.5L 4Cyl Petrol Engine</li>'
+ '</ul>'
+ '</div>'
+ '</div>');
}
});
私は、今しばらくの間、この上の任意の助けを事前に
おかげで立ち往生してきました。
可能な複製を:私は
car-preview
要素の間の空白を削除した次の例では要素?](https://stackoverflow.com/questions/5078239/how-to-remove-the-space-between-inline-block-elements) –