I've asked a question before:
Li float left, length dynamic : no border-bottom on the last row
Thanks for the answers, however, when I added a "open box feature", the border bottom is having problem.
here is the code:
$('li').click(function() {
if (!$('div.' + $(this).index()).length) {
for (a = $('li').length - 1; a >= 0; a--) {
if ($('li').eq(a).offset().top == $(this).offset().top) {
$('li').eq(a).after('<div class="' + $(this).index() + '">' + $(this).html() + '</div>');
$('div:not(.' + $(this).index() + ')').remove();
break;
/*$('div.' + $(this).index()).slideDown(200);
$('div:not(.' + $(this).index() + ')').slideUp(200, function() {
$(this).remove();
});*/
}
}
} else {
$('div.' + $(this).index()).slideUp(200, function() {
$(this).remove();
});
}
})
ul {
display: block;
width: 100%;
margin: 0;
padding: 0
}
li {
display: block;
width: 33%;
height: 120px;
float: left;
margin: 0;
padding: 0;
border-bottom: #ccc 1px solid;
box-sizing: border-box;
background: #fee;
}
ul:after {
content: '';
display: block;
clear: both;
}
/*li.no-border {
border-bottom: 0px;
}*/
li:nth-last-child(4) ~ li:nth-child(3n+1),
li:nth-last-child(4) ~ li:nth-child(3n+1) ~ li{
border-bottom: 0px;
}
div {
background: #ccc;
height: 150px;
width: 100%;
clear: both;
display: block
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
</ul>
please help. thanks.