html - CSS confusion. Exactly similar tag, exactly similar CSS, but not working properly -
i have javascript appends html div
there if loop, , appends divs similar data, difference in class name. either tag gets appended:
<div class="customer" id="0"><h2>lorem ipsum</h2><h3>testing</h3></div>
or appended:
<div class="vehicle" id="0"><h2>lorem ipsum</h2><h3>testing</h3></div>
the css is:
for customer classed div:
#results .customer{ height: 60px; padding-top: 18px; margin: 10px 0px; border-bottom: 20px solid black; } #results .customer h2{ font-size: 2.5em; } #results .customer h3{ width: 90%; text-align: right; float: right; font-size: 1.5em; margin-top: 15px; margin-right: 15px; }
for vehicles classed div:
#results .vehicle{ height: 60px; padding-top: 18px; margin: 10px 0px; border-bottom: 20px solid black; } #results .vehicle h2{ font-size: 2.5em; } #results .vehicle h3{ width: 90%; text-align: right; float: right; font-size: 1.5em; margin-top: 15px; margin-right: 15px; }
basically both same. 1 works properly, i.e. whichever positioned lower in css file.
so here, when vehicles classed div appended, displays correctly. if customer classed div appended, doesn't. reverse happen if cut cut css vehicle classed divs , paste above customer classed css.
i know css calculates priority of css rules based on method in inline rules max points, internal styles, external styles , in external, 1000 points id, 100 tag...etc
something that, when have separate class names, how can there conflict. happening?
check both class names appended correctly inside #results
div
Comments
Post a Comment