html - Last-Child inside div not working -


i , using addthis share plugin , have changed background color yellow , added bottom-border: of 1px, want remove bottom border last not working me using following css

css

div#at4-share a:last-child {   border-bottom: 0px solid #1f1f1f;  } 

html

<div id="at4-share" class="addthis_32x32_style atss atss-left addthis-animated slideinleft at4-show">   <a class="at4-share-btn at-svc-facebook" href="#">     <span class=" at4-icon aticon-facebook" title="facebook">facebook</span>   </a>   <a class="at4-share-btn at-svc-twitter" href="#">     <span class=" at4-icon aticon-twitter" title="twitter">twitter</span>   </a>   <a class="at4-share-btn at-svc-pinterest_share" href="#">     <span class=" at4-icon aticon-pinterest_share" title="pinterest">pinterest</span>   </a>   <a class="at4-share-btn at-svc-google_plusone_share" href="#">     <span class=" at4-icon aticon-google_plusone_share" title="google+">google+</span>   </a>   <a class="at4-share-btn at-svc-compact" href="#">     <span class=" at4-icon aticon-compact" title="more">more</span>   </a>   <div id="at4-scc" class="at-share-close-control ats-transparent at4-show at4-hide-content" title="hide">     <div class="at4-arrow at-left">hide</div>   </div> </div> 

i had tried

div#at4-share a:last-of-type {   border-bottom: 0px solid #1f1f1f;  } 

so not sure wrong

the correct selector :last-of-type.

div#at4-share > a:last-of-type {   border-bottom:none; /* remove bottom border. */ } 

fiddle


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -