2014-10-17 82 views
1

請問您能幫我從箱子中移除最右邊的邊緣嗎? 我想在CSS中使用::after僞元素,但它似乎不起作用。 (http://jsfiddle.net/ve0Laa8f/刪除圖片框上的最右邊緣

<div class="content-wrap"> 
<div class="content-center-wrap"> 
<div class="index-cats-wrap"></div> 
<div class="index-cats-wrap"></div> 
<div class="index-cats-wrap"><p>test</div> 
</div> 
</div> 

.content-center-wrap{ 
    width:960px; 
    height:auto; 
    min-height:400px; 
    overflow:hidden; 
    background-color:#fff; 
    margin: 0 auto; 
    padding-top:40px; 
    padding-bottom:40px; 
} 

.index-cats-wrap{ 
    display:block; 
    float:left; 
    width:298px; 
    height:400px; 
    margin-right:20px; 
    border:1px solid #95a5a6; 
} 

.index-cats-wrap::after{ 
    margin-right:0px; 
} 

謝謝。

+0

喜歡這個? http://jsfiddle.net/ve0Laa8f/1/ – KRUKUSA 2014-10-17 21:17:49

回答

1

您需要:last-child css選擇器。

.index-cats-wrap:last-child { 
    margin-right: 0px; 
} 

小提琴:http://jsfiddle.net/ve0Laa8f/5/

+0

小提琴仍然有餘量?似乎沒有刪除它? – 2014-10-17 21:31:11

+0

請檢查更新。 – emmanuel 2014-10-17 21:36:48

+0

啊我看到你做了什麼,謝謝你不應該錯過 – 2014-10-17 21:46:20