CSS not properly affecting HTML -


i'm working on site , having hard time getting css affect html way expect. here page i'm working on: www.lindseybakermedia.com/design/shop-local-weekly/. part giving me problems list of deals. first of all, i've added padding each div, text seems expanding out of respective divs reason. second, i've used :last-child keep bottom border off last div, doesn't seem working either. i've been using firebug figure out what's going on, have no idea. appreciated.

html:

<section id="homedealslist">    <div id="dealscontent">       <div id="expirationheader">          <!-- expiration date generated automatically -->          <p>these deals expire on <span id="expiration">06/03/15</span>.</p>       </div>       <!-- 1 div generated content every deal -->       <div class="deal">          <a href="businessprofile.php?recordid=27" title="logo"><img src="_logos/1418244707.jpg" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=27">new york dogs</a></h4>             <ul>                <li class="chambertitle-a">chamber member</li>                <li>12145 nw grand ave</li>                <li>any town, arizona 85335</li>             </ul>          </div>          <div class="dealdescription">             <p>"the works" $2 week!</p>             <a href="businessdeal.php?recordid=87" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=27" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <div class="deal">          <a href="businessprofile.php?recordid=71" title="logo"><img src="_logos/2865517138.jpg" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=71">small emperor</a></h4>             <ul>                <li class="chambertitle-a">chamber member</li>                <li>(480) 586-1800</li>                <li>2702 n greenfield rd</li>                <li>any town, arizona 85006</li>                <li><a href="http://www.smallemperor.com" target="_blank">www.smallemperor.com</a></li>             </ul>          </div>          <div class="dealdescription">             <p>super fridays!!</p>             <a href="businessdeal.php?recordid=132" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=71" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <div class="deal">          <a href="businessprofile.php?recordid=71" title="logo"><img src="_logos/2865517138.jpg" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=71">small emperor</a></h4>             <ul>                <li class="chambertitle-a">chamber member</li>                <li>(480) 586-1800</li>                <li>2702 n greenfield rd</li>                <li>any town, arizona 85006</li>                <li><a href="http://www.smallemperor.com" target="_blank">www.smallemperor.com</a></li>             </ul>          </div>          <div class="dealdescription">             <p> expert web design lindsey</p>             <a href="businessdeal.php?recordid=133" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=71" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <div class="deal">          <a href="businessprofile.php?recordid=71" title="logo"><img src="_logos/2865517138.jpg" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=71">small emperor</a></h4>             <ul>                <li class="chambertitle-a">chamber member</li>                <li>(480) 586-1800</li>                <li>2702 n greenfield rd</li>                <li>any town, arizona 85006</li>                <li><a href="http://www.smallemperor.com" target="_blank">www.smallemperor.com</a></li>             </ul>          </div>          <div class="dealdescription">             <p> expert web design lindsey</p>             <a href="businessdeal.php?recordid=134" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=71" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <div class="deal">          <a href="businessprofile.php?recordid=26" title="logo"><img src="_logos/bobs_logo.gif" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=26">bob's market</a></h4>             <ul>                <li class="chambertitle-a">chamber member</li>                <li>(623) 222-3333</li>                <li>12145 nw grand ave</li>                <li>any town, arizona 85335</li>             </ul>          </div>          <div class="dealdescription">             <p>$2 freshly baked loaf of bread</p>             <a href="businessdeal.php?recordid=89" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=26" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <div class="deal">          <a href="businessprofile.php?recordid=28" title="logo"><img src="_logos/1418244938.jpg" alt="business logo" class="businesslogo" /></a>          <div class="businesscontactinfo">             <!-- link business profile -->                <h4><a href="businessprofile.php?recordid=28">the hat store</a></h4>             <ul>                <li>(623) 999-3333</li>                <li>12145 nw grand ave</li>                <li>any town, arizona 85335</li>             </ul>          </div>          <div class="dealdescription">             <p>all green hats 50% off!</p>             <a href="businessdeal.php?recordid=64" target="_blank" >view details</a>          </div>          <!-- link generated based on address -->          <a href="map.php?recordid=28" target="_blank"><img src="images/mapit.png" alt="map it" class="mapimg" /></a>       </div>       <br class="clear" />    </div>    <!-- generate printable ads -->    <div id="printads">       <a href="deals.php" target="_blank">print shop local weekly</a>    </div> </section> 

css:

section#homedealslist div#dealscontent div.deal {     width: 100%;     padding: 30px 0;     border-bottom: 1px solid #222222; } section#homedealslist div#dealscontent div.deal:last-child {     border: none; } 

1. fix expanding text

clear floats,

.deal:after {    content: " ";    clear: both;    display: block; } 

i think should work. should usable on modern browsers, see http://caniuse.com/#feat=css-gencontent support.

2. removing bottom border on last <div>

delete <br> line break after last <div> has class .deal assigned it.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -