How to remove border from elements in the last row?Targeting flex items on the last or specific rowHow to vertically wrap content with flexbox?Remove border from IFrameHow do you keep parents of floated elements from collapsing?CSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?Div width 100% minus fixed amount of pixelsHow can I select an element with multiple classes in jQuery?How to move an element into another element?How do I combine a background-image and CSS3 gradient on the same element?How to remove border (outline) around text/input boxes? (Chrome)How do I remove the space between inline-block elements?Flex-box: Align last row to grid

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

US citizen flying to France today and my passport expires in less than 2 months

To string or not to string

Why don't electron-positron collisions release infinite energy?

Theorems that impeded progress

Fencing style for blades that can attack from a distance

What typically incentivizes a professor to change jobs to a lower ranking university?

Modeling an IPv4 Address

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)

Today is the Center

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

How can I make my BBEG immortal short of making them a Lich or Vampire?

The use of multiple foreign keys on same column in SQL Server

tikz: show 0 at the axis origin

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

How to write a macro that is braces sensitive?

Have astronauts in space suits ever taken selfies? If so, how?

Is it possible to do 50 km distance without any previous training?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

Font hinting is lost in Chrome-like browsers (for some languages )

Why do I get two different answers for this counting problem?

How old can references or sources in a thesis be?



How to remove border from elements in the last row?


Targeting flex items on the last or specific rowHow to vertically wrap content with flexbox?Remove border from IFrameHow do you keep parents of floated elements from collapsing?CSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?Div width 100% minus fixed amount of pixelsHow can I select an element with multiple classes in jQuery?How to move an element into another element?How do I combine a background-image and CSS3 gradient on the same element?How to remove border (outline) around text/input boxes? (Chrome)How do I remove the space between inline-block elements?Flex-box: Align last row to grid






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








12















My layout is something like this (I'm typing a simplified version with inline styles instead of classes)






.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





This basically renders something like this:



enter image description here



My questions is:



How do I get rid of the border in the last row?










share|improve this question
























  • I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

    – Funk Doc
    Apr 2 at 18:05











  • Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

    – supersan
    Apr 2 at 18:09






  • 5





    Just add: .qa:nth-last-child(-n+2) border: 0;

    – bea
    Apr 2 at 18:28






  • 2





    @bea: your's is the right answer! Put it as an answer and you'll get upvoted

    – enxaneta
    Apr 2 at 18:55

















12















My layout is something like this (I'm typing a simplified version with inline styles instead of classes)






.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





This basically renders something like this:



enter image description here



My questions is:



How do I get rid of the border in the last row?










share|improve this question
























  • I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

    – Funk Doc
    Apr 2 at 18:05











  • Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

    – supersan
    Apr 2 at 18:09






  • 5





    Just add: .qa:nth-last-child(-n+2) border: 0;

    – bea
    Apr 2 at 18:28






  • 2





    @bea: your's is the right answer! Put it as an answer and you'll get upvoted

    – enxaneta
    Apr 2 at 18:55













12












12








12


1






My layout is something like this (I'm typing a simplified version with inline styles instead of classes)






.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





This basically renders something like this:



enter image description here



My questions is:



How do I get rid of the border in the last row?










share|improve this question
















My layout is something like this (I'm typing a simplified version with inline styles instead of classes)






.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





This basically renders something like this:



enter image description here



My questions is:



How do I get rid of the border in the last row?






.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





.qa 
border-bottom: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>






html css css3 flexbox css-selectors






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 2 at 21:16









Michael_B

158k50255363




158k50255363










asked Apr 2 at 18:01









supersansupersan

1,8141838




1,8141838












  • I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

    – Funk Doc
    Apr 2 at 18:05











  • Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

    – supersan
    Apr 2 at 18:09






  • 5





    Just add: .qa:nth-last-child(-n+2) border: 0;

    – bea
    Apr 2 at 18:28






  • 2





    @bea: your's is the right answer! Put it as an answer and you'll get upvoted

    – enxaneta
    Apr 2 at 18:55

















  • I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

    – Funk Doc
    Apr 2 at 18:05











  • Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

    – supersan
    Apr 2 at 18:09






  • 5





    Just add: .qa:nth-last-child(-n+2) border: 0;

    – bea
    Apr 2 at 18:28






  • 2





    @bea: your's is the right answer! Put it as an answer and you'll get upvoted

    – enxaneta
    Apr 2 at 18:55
















I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

– Funk Doc
Apr 2 at 18:05





I think nth-last-child would be able to help you css-tricks.com/almanac/selectors/n/nth-last-child

– Funk Doc
Apr 2 at 18:05













Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

– supersan
Apr 2 at 18:09





Yes I was thinking along the same lines but that only targets the bottom right div. I need it to target both last row divs

– supersan
Apr 2 at 18:09




5




5





Just add: .qa:nth-last-child(-n+2) border: 0;

– bea
Apr 2 at 18:28





Just add: .qa:nth-last-child(-n+2) border: 0;

– bea
Apr 2 at 18:28




2




2





@bea: your's is the right answer! Put it as an answer and you'll get upvoted

– enxaneta
Apr 2 at 18:55





@bea: your's is the right answer! Put it as an answer and you'll get upvoted

– enxaneta
Apr 2 at 18:55












7 Answers
7






active

oldest

votes


















5














You can add a negative bottom margin to your elements then hide the overflow. This will hide the unwanted borders.






.qa 
border-bottom: 1px solid #ccc;
margin-bottom:-1px;
margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

/*irrelevant styles*/
padding: 5px;
margin-left:5px;
margin-right:5px;
box-sizing: border-box;
flex:1 1 40%;


.wrapper
display: flex;
flex-wrap: wrap;
flex-direction: row;
overflow:hidden;

<div class="wrapper">
<div class="qa">
<div>Question</div>
<div>Answer<br>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer<br>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa">
<div>Question</div>
<div>Answer<br>Answer</div>
</div>
</div>





This trick should work even if the number of element in a row is different from 2:






.qa 
border-bottom: 1px solid #ccc;
margin-bottom:-1px;
margin-top:1px;


/*irrelevant styles*/
padding: 5px;
margin-left:5px;
margin-right:5px;
box-sizing: border-box;
flex:1 1 20%;


.wrapper
display: flex;
flex-wrap: wrap;
flex-direction: row;
overflow:hidden;

<div class="wrapper">
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer<br> answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer<br> answer</div>
</div>
</div>





It will also work with a reponsive layout where the number of columns can change on small screens:






.qa 
border-bottom: 1px solid #ccc;
margin-bottom:-1px;
margin-top:1px;


/*irrelevant styles*/
padding: 5px;
margin-left:5px;
margin-right:5px;
box-sizing: border-box;
flex:1 1 20%;


.wrapper
display: flex;
flex-wrap: wrap;
flex-direction: row;
overflow:hidden;


@media all and (max-width:800px)
.qa
flex:1 1 30%;



@media all and (max-width:400px)
.qa
flex:1 1 40%;


<div class="wrapper">
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer<br> answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" >
<div>Question</div>
<div>Answer<br> answer</div>
</div>
</div>








share|improve this answer




















  • 1





    This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

    – supersan
    Apr 2 at 19:55











  • @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

    – Temani Afif
    Apr 2 at 20:19


















6














1: Use Another CSS class



We can create another CSS class which removes any styling form an existence element



.no-border 
border-bottom: none;



Then add this class to the html element e.g.



 <div class="qa no-border" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>


2: Use CSS pseudo selector




.qa:last-child
border-bottom: none;


.qa:nth-last-child(2)
border-bottom: none;






share|improve this answer

























  • they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

    – Temani Afif
    Apr 2 at 19:40











  • Yes, good catch Temani! Thanks

    – KhaledMohamedP
    Apr 2 at 19:42











  • never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

    – supersan
    Apr 2 at 19:48


















4














Don't think about it as border-bottom.



Think about it as border-top and exclude the first two elements.



So instead of this:



.qa border-bottom: 1px solid #ccc; 


Try this:



.qa + .qa + .qa border-top: 1px solid #ccc; 





.qa + .qa + .qa 
border-top: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
</div>





The next-sibling combinator (+) targets an element that is immediately preceded by another element, and both share the same parent.



So .qa + .qa would target only .qa elements that are preceded by one .qa element.



.qa + .qa + .qa targets only .qa elements that are preceded by two .qa elements.




Alternatively, you can try this:



.qa:nth-child(n + 3) border-top: 1px solid #ccc; 





.qa:nth-child(n + 3) 
border-top: 1px solid #ccc;

<div style="display: flex; flex-wrap: wrap; flex-direction: row">
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>
<div class="qa" style="width:50%;">
<div>Question</div>
<div>Answer</div>
</div>


</div>








share|improve this answer

























  • Your first solution is absolutely unreadable. Your second option I like.

    – Raz0rwire
    Apr 2 at 19:06











  • @Raz0rwire, what don't you understand?

    – Michael_B
    Apr 2 at 19:07











  • @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

    – Raz0rwire
    Apr 2 at 19:11


















3














judging by your layout, the items are numbered:



 [1] [2]
[3] [4]
[5] [6]


now, you can either:



  • remove border-bottom from 5th & 6th items

.qa 
border-bottom: 1px solid #ccc;


.qa:nth-of-type(5),
.qa:nth-of-type(6)
border-bottom: none;



  • add border-bottom to 1st-4th items:

.qa:nth-of-type(n+5) 
border-bottom: 1px solid #ccc;



  • do similar math but for adding border-top


you can also flip the flex direction to make it more "reasonable" but also requires a fixed height (needed for wrapping, see here):



.container 
display: flex;
flex-direction: column;
flex-wrap: wrap;



which numbers items in a different orientation:



 [1] [4]
[2] [5]
[3] [6]


now you reomove border-bottom on every 3rd item:



.qa 
border-bottom: 1px solid #ccc;


.qa:nth-of-type(3n)
border-bottom: none;




there are more complex fixes as well. for instance, you can group items in rows and apply border on row based selectors. This will be closest to what you really intended in the first place:



.row .qa 
border-bottom: 1px solid #ccc;


.row:last-of-type .qa
border-bottom: none;






share|improve this answer






























    1














    You could use border-top and remove the first two with the :nth-child CSS selector. Like this:






    .qa 
    border-top: 1px solid #ccc;


    .qa:nth-child(-n+2)
    border-top: none;

    <div style="display: flex; flex-wrap: wrap; flex-direction: row">
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    <div class="qa" style="width:50%;">
    <div>Question</div>
    <div>Answer</div>
    </div>
    </div>








    share|improve this answer






























      0














      If you can add a :after pseudo Element in parent container of .qa (make sure your parent container is set to position: relative; or position: absolute;)



      Css for .qa parent element




      content: "";
      position: relative;
      bottom: 0;
      left:0;
      right:0;
      height: /* set this to your (bottom padding of container + bottom margin of .qa box + border width) */
      background: #fff; /* match this with your parent element background colour*/






      share|improve this answer
































        0














        I don't like adding a rule when you know you're immediately going to overwrite it, so here's a slightly different version of aridlehoover's answer with only one CSS rule.






        .qa:not(:nth-child(-n+2)) 
        border-top: 1px solid #ccc;

        <div style="display: flex; flex-wrap: wrap; flex-direction: row">
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        <div class="qa" style="width:50%;">
        <div>Question</div>
        <div>Answer</div>
        </div>
        </div>








        share|improve this answer























          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55480980%2fhow-to-remove-border-from-elements-in-the-last-row%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          7 Answers
          7






          active

          oldest

          votes








          7 Answers
          7






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          5














          You can add a negative bottom margin to your elements then hide the overflow. This will hide the unwanted borders.






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          This trick should work even if the number of element in a row is different from 2:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          It will also work with a reponsive layout where the number of columns can change on small screens:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>








          share|improve this answer




















          • 1





            This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

            – supersan
            Apr 2 at 19:55











          • @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

            – Temani Afif
            Apr 2 at 20:19















          5














          You can add a negative bottom margin to your elements then hide the overflow. This will hide the unwanted borders.






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          This trick should work even if the number of element in a row is different from 2:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          It will also work with a reponsive layout where the number of columns can change on small screens:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>








          share|improve this answer




















          • 1





            This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

            – supersan
            Apr 2 at 19:55











          • @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

            – Temani Afif
            Apr 2 at 20:19













          5












          5








          5







          You can add a negative bottom margin to your elements then hide the overflow. This will hide the unwanted borders.






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          This trick should work even if the number of element in a row is different from 2:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          It will also work with a reponsive layout where the number of columns can change on small screens:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>








          share|improve this answer















          You can add a negative bottom margin to your elements then hide the overflow. This will hide the unwanted borders.






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          This trick should work even if the number of element in a row is different from 2:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          It will also work with a reponsive layout where the number of columns can change on small screens:






          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>








          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px; /*to rectify the bottom margin, we can also consider padding-bottom*/

          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 40%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa">
          <div>Question</div>
          <div>Answer<br>Answer</div>
          </div>
          </div>





          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;

          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>





          .qa 
          border-bottom: 1px solid #ccc;
          margin-bottom:-1px;
          margin-top:1px;


          /*irrelevant styles*/
          padding: 5px;
          margin-left:5px;
          margin-right:5px;
          box-sizing: border-box;
          flex:1 1 20%;


          .wrapper
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          overflow:hidden;


          @media all and (max-width:800px)
          .qa
          flex:1 1 30%;



          @media all and (max-width:400px)
          .qa
          flex:1 1 40%;


          <div class="wrapper">
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" >
          <div>Question</div>
          <div>Answer<br> answer</div>
          </div>
          </div>






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 2 at 20:21

























          answered Apr 2 at 19:15









          Temani AfifTemani Afif

          82.2k104794




          82.2k104794







          • 1





            This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

            – supersan
            Apr 2 at 19:55











          • @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

            – Temani Afif
            Apr 2 at 20:19












          • 1





            This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

            – supersan
            Apr 2 at 19:55











          • @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

            – Temani Afif
            Apr 2 at 20:19







          1




          1





          This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

          – supersan
          Apr 2 at 19:55





          This is great out of the box thinking! and it covers both flex row and columns. That's why I love SO, you get to learn so much! thanks

          – supersan
          Apr 2 at 19:55













          @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

          – Temani Afif
          Apr 2 at 20:19





          @supersan yes exactly ;) it will cover all the different configuration and more important the responsive part as I am sure that your layout will change to one column for example on small screens.

          – Temani Afif
          Apr 2 at 20:19













          6














          1: Use Another CSS class



          We can create another CSS class which removes any styling form an existence element



          .no-border 
          border-bottom: none;



          Then add this class to the html element e.g.



           <div class="qa no-border" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          2: Use CSS pseudo selector




          .qa:last-child
          border-bottom: none;


          .qa:nth-last-child(2)
          border-bottom: none;






          share|improve this answer

























          • they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

            – Temani Afif
            Apr 2 at 19:40











          • Yes, good catch Temani! Thanks

            – KhaledMohamedP
            Apr 2 at 19:42











          • never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

            – supersan
            Apr 2 at 19:48















          6














          1: Use Another CSS class



          We can create another CSS class which removes any styling form an existence element



          .no-border 
          border-bottom: none;



          Then add this class to the html element e.g.



           <div class="qa no-border" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          2: Use CSS pseudo selector




          .qa:last-child
          border-bottom: none;


          .qa:nth-last-child(2)
          border-bottom: none;






          share|improve this answer

























          • they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

            – Temani Afif
            Apr 2 at 19:40











          • Yes, good catch Temani! Thanks

            – KhaledMohamedP
            Apr 2 at 19:42











          • never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

            – supersan
            Apr 2 at 19:48













          6












          6








          6







          1: Use Another CSS class



          We can create another CSS class which removes any styling form an existence element



          .no-border 
          border-bottom: none;



          Then add this class to the html element e.g.



           <div class="qa no-border" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          2: Use CSS pseudo selector




          .qa:last-child
          border-bottom: none;


          .qa:nth-last-child(2)
          border-bottom: none;






          share|improve this answer















          1: Use Another CSS class



          We can create another CSS class which removes any styling form an existence element



          .no-border 
          border-bottom: none;



          Then add this class to the html element e.g.



           <div class="qa no-border" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          2: Use CSS pseudo selector




          .qa:last-child
          border-bottom: none;


          .qa:nth-last-child(2)
          border-bottom: none;







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 2 at 19:39









          Temani Afif

          82.2k104794




          82.2k104794










          answered Apr 2 at 19:34









          KhaledMohamedPKhaledMohamedP

          2,33021720




          2,33021720












          • they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

            – Temani Afif
            Apr 2 at 19:40











          • Yes, good catch Temani! Thanks

            – KhaledMohamedP
            Apr 2 at 19:42











          • never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

            – supersan
            Apr 2 at 19:48

















          • they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

            – Temani Afif
            Apr 2 at 19:40











          • Yes, good catch Temani! Thanks

            – KhaledMohamedP
            Apr 2 at 19:42











          • never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

            – supersan
            Apr 2 at 19:48
















          they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

          – Temani Afif
          Apr 2 at 19:40





          they are called pseudo classes (developer.mozilla.org/fr/docs/Web/CSS/Pseudo-classes)

          – Temani Afif
          Apr 2 at 19:40













          Yes, good catch Temani! Thanks

          – KhaledMohamedP
          Apr 2 at 19:42





          Yes, good catch Temani! Thanks

          – KhaledMohamedP
          Apr 2 at 19:42













          never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

          – supersan
          Apr 2 at 19:48





          never realized it would always be the last and second last element. the layout makes it look like it's the 3rd element and 6th element. thanks

          – supersan
          Apr 2 at 19:48











          4














          Don't think about it as border-bottom.



          Think about it as border-top and exclude the first two elements.



          So instead of this:



          .qa border-bottom: 1px solid #ccc; 


          Try this:



          .qa + .qa + .qa border-top: 1px solid #ccc; 





          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          The next-sibling combinator (+) targets an element that is immediately preceded by another element, and both share the same parent.



          So .qa + .qa would target only .qa elements that are preceded by one .qa element.



          .qa + .qa + .qa targets only .qa elements that are preceded by two .qa elements.




          Alternatively, you can try this:



          .qa:nth-child(n + 3) border-top: 1px solid #ccc; 





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>








          share|improve this answer

























          • Your first solution is absolutely unreadable. Your second option I like.

            – Raz0rwire
            Apr 2 at 19:06











          • @Raz0rwire, what don't you understand?

            – Michael_B
            Apr 2 at 19:07











          • @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

            – Raz0rwire
            Apr 2 at 19:11















          4














          Don't think about it as border-bottom.



          Think about it as border-top and exclude the first two elements.



          So instead of this:



          .qa border-bottom: 1px solid #ccc; 


          Try this:



          .qa + .qa + .qa border-top: 1px solid #ccc; 





          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          The next-sibling combinator (+) targets an element that is immediately preceded by another element, and both share the same parent.



          So .qa + .qa would target only .qa elements that are preceded by one .qa element.



          .qa + .qa + .qa targets only .qa elements that are preceded by two .qa elements.




          Alternatively, you can try this:



          .qa:nth-child(n + 3) border-top: 1px solid #ccc; 





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>








          share|improve this answer

























          • Your first solution is absolutely unreadable. Your second option I like.

            – Raz0rwire
            Apr 2 at 19:06











          • @Raz0rwire, what don't you understand?

            – Michael_B
            Apr 2 at 19:07











          • @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

            – Raz0rwire
            Apr 2 at 19:11













          4












          4








          4







          Don't think about it as border-bottom.



          Think about it as border-top and exclude the first two elements.



          So instead of this:



          .qa border-bottom: 1px solid #ccc; 


          Try this:



          .qa + .qa + .qa border-top: 1px solid #ccc; 





          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          The next-sibling combinator (+) targets an element that is immediately preceded by another element, and both share the same parent.



          So .qa + .qa would target only .qa elements that are preceded by one .qa element.



          .qa + .qa + .qa targets only .qa elements that are preceded by two .qa elements.




          Alternatively, you can try this:



          .qa:nth-child(n + 3) border-top: 1px solid #ccc; 





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>








          share|improve this answer















          Don't think about it as border-bottom.



          Think about it as border-top and exclude the first two elements.



          So instead of this:



          .qa border-bottom: 1px solid #ccc; 


          Try this:



          .qa + .qa + .qa border-top: 1px solid #ccc; 





          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          The next-sibling combinator (+) targets an element that is immediately preceded by another element, and both share the same parent.



          So .qa + .qa would target only .qa elements that are preceded by one .qa element.



          .qa + .qa + .qa targets only .qa elements that are preceded by two .qa elements.




          Alternatively, you can try this:



          .qa:nth-child(n + 3) border-top: 1px solid #ccc; 





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>








          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          .qa + .qa + .qa 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          </div>





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>





          .qa:nth-child(n + 3) 
          border-top: 1px solid #ccc;

          <div style="display: flex; flex-wrap: wrap; flex-direction: row">
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>
          <div class="qa" style="width:50%;">
          <div>Question</div>
          <div>Answer</div>
          </div>


          </div>






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 2 at 19:02

























          answered Apr 2 at 18:47









          Michael_BMichael_B

          158k50255363




          158k50255363












          • Your first solution is absolutely unreadable. Your second option I like.

            – Raz0rwire
            Apr 2 at 19:06











          • @Raz0rwire, what don't you understand?

            – Michael_B
            Apr 2 at 19:07











          • @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

            – Raz0rwire
            Apr 2 at 19:11

















          • Your first solution is absolutely unreadable. Your second option I like.

            – Raz0rwire
            Apr 2 at 19:06











          • @Raz0rwire, what don't you understand?

            – Michael_B
            Apr 2 at 19:07











          • @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

            – Raz0rwire
            Apr 2 at 19:11
















          Your first solution is absolutely unreadable. Your second option I like.

          – Raz0rwire
          Apr 2 at 19:06





          Your first solution is absolutely unreadable. Your second option I like.

          – Raz0rwire
          Apr 2 at 19:06













          @Raz0rwire, what don't you understand?

          – Michael_B
          Apr 2 at 19:07





          @Raz0rwire, what don't you understand?

          – Michael_B
          Apr 2 at 19:07













          @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

          – Raz0rwire
          Apr 2 at 19:11





          @Micheal_B Understanding it now is not the problem, looking at the code 6 months from now could introduce some head scratching. Maybe I was being a little dramatic..

          – Raz0rwire
          Apr 2 at 19:11











          3














          judging by your layout, the items are numbered:



           [1] [2]
          [3] [4]
          [5] [6]


          now, you can either:



          • remove border-bottom from 5th & 6th items

          .qa 
          border-bottom: 1px solid #ccc;


          .qa:nth-of-type(5),
          .qa:nth-of-type(6)
          border-bottom: none;



          • add border-bottom to 1st-4th items:

          .qa:nth-of-type(n+5) 
          border-bottom: 1px solid #ccc;



          • do similar math but for adding border-top


          you can also flip the flex direction to make it more "reasonable" but also requires a fixed height (needed for wrapping, see here):



          .container 
          display: flex;
          flex-direction: column;
          flex-wrap: wrap;



          which numbers items in a different orientation:



           [1] [4]
          [2] [5]
          [3] [6]


          now you reomove border-bottom on every 3rd item:



          .qa 
          border-bottom: 1px solid #ccc;


          .qa:nth-of-type(3n)
          border-bottom: none;




          there are more complex fixes as well. for instance, you can group items in rows and apply border on row based selectors. This will be closest to what you really intended in the first place:



          .row .qa 
          border-bottom: 1px solid #ccc;


          .row:last-of-type .qa
          border-bottom: none;






          share|improve this answer



























            3














            judging by your layout, the items are numbered:



             [1] [2]
            [3] [4]
            [5] [6]


            now, you can either:



            • remove border-bottom from 5th & 6th items

            .qa 
            border-bottom: 1px solid #ccc;


            .qa:nth-of-type(5),
            .qa:nth-of-type(6)
            border-bottom: none;



            • add border-bottom to 1st-4th items:

            .qa:nth-of-type(n+5) 
            border-bottom: 1px solid #ccc;



            • do similar math but for adding border-top


            you can also flip the flex direction to make it more "reasonable" but also requires a fixed height (needed for wrapping, see here):



            .container 
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;



            which numbers items in a different orientation:



             [1] [4]
            [2] [5]
            [3] [6]


            now you reomove border-bottom on every 3rd item:



            .qa 
            border-bottom: 1px solid #ccc;


            .qa:nth-of-type(3n)
            border-bottom: none;




            there are more complex fixes as well. for instance, you can group items in rows and apply border on row based selectors. This will be closest to what you really intended in the first place:



            .row .qa 
            border-bottom: 1px solid #ccc;


            .row:last-of-type .qa
            border-bottom: none;






            share|improve this answer

























              3












              3








              3







              judging by your layout, the items are numbered:



               [1] [2]
              [3] [4]
              [5] [6]


              now, you can either:



              • remove border-bottom from 5th & 6th items

              .qa 
              border-bottom: 1px solid #ccc;


              .qa:nth-of-type(5),
              .qa:nth-of-type(6)
              border-bottom: none;



              • add border-bottom to 1st-4th items:

              .qa:nth-of-type(n+5) 
              border-bottom: 1px solid #ccc;



              • do similar math but for adding border-top


              you can also flip the flex direction to make it more "reasonable" but also requires a fixed height (needed for wrapping, see here):



              .container 
              display: flex;
              flex-direction: column;
              flex-wrap: wrap;



              which numbers items in a different orientation:



               [1] [4]
              [2] [5]
              [3] [6]


              now you reomove border-bottom on every 3rd item:



              .qa 
              border-bottom: 1px solid #ccc;


              .qa:nth-of-type(3n)
              border-bottom: none;




              there are more complex fixes as well. for instance, you can group items in rows and apply border on row based selectors. This will be closest to what you really intended in the first place:



              .row .qa 
              border-bottom: 1px solid #ccc;


              .row:last-of-type .qa
              border-bottom: none;






              share|improve this answer













              judging by your layout, the items are numbered:



               [1] [2]
              [3] [4]
              [5] [6]


              now, you can either:



              • remove border-bottom from 5th & 6th items

              .qa 
              border-bottom: 1px solid #ccc;


              .qa:nth-of-type(5),
              .qa:nth-of-type(6)
              border-bottom: none;



              • add border-bottom to 1st-4th items:

              .qa:nth-of-type(n+5) 
              border-bottom: 1px solid #ccc;



              • do similar math but for adding border-top


              you can also flip the flex direction to make it more "reasonable" but also requires a fixed height (needed for wrapping, see here):



              .container 
              display: flex;
              flex-direction: column;
              flex-wrap: wrap;



              which numbers items in a different orientation:



               [1] [4]
              [2] [5]
              [3] [6]


              now you reomove border-bottom on every 3rd item:



              .qa 
              border-bottom: 1px solid #ccc;


              .qa:nth-of-type(3n)
              border-bottom: none;




              there are more complex fixes as well. for instance, you can group items in rows and apply border on row based selectors. This will be closest to what you really intended in the first place:



              .row .qa 
              border-bottom: 1px solid #ccc;


              .row:last-of-type .qa
              border-bottom: none;







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Apr 2 at 19:43









              zhirzhzhirzh

              1,7101723




              1,7101723





















                  1














                  You could use border-top and remove the first two with the :nth-child CSS selector. Like this:






                  .qa 
                  border-top: 1px solid #ccc;


                  .qa:nth-child(-n+2)
                  border-top: none;

                  <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  <div class="qa" style="width:50%;">
                  <div>Question</div>
                  <div>Answer</div>
                  </div>
                  </div>








                  share|improve this answer



























                    1














                    You could use border-top and remove the first two with the :nth-child CSS selector. Like this:






                    .qa 
                    border-top: 1px solid #ccc;


                    .qa:nth-child(-n+2)
                    border-top: none;

                    <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    <div class="qa" style="width:50%;">
                    <div>Question</div>
                    <div>Answer</div>
                    </div>
                    </div>








                    share|improve this answer

























                      1












                      1








                      1







                      You could use border-top and remove the first two with the :nth-child CSS selector. Like this:






                      .qa 
                      border-top: 1px solid #ccc;


                      .qa:nth-child(-n+2)
                      border-top: none;

                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      </div>








                      share|improve this answer













                      You could use border-top and remove the first two with the :nth-child CSS selector. Like this:






                      .qa 
                      border-top: 1px solid #ccc;


                      .qa:nth-child(-n+2)
                      border-top: none;

                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      </div>








                      .qa 
                      border-top: 1px solid #ccc;


                      .qa:nth-child(-n+2)
                      border-top: none;

                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      </div>





                      .qa 
                      border-top: 1px solid #ccc;


                      .qa:nth-child(-n+2)
                      border-top: none;

                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      <div class="qa" style="width:50%;">
                      <div>Question</div>
                      <div>Answer</div>
                      </div>
                      </div>






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Apr 2 at 19:45









                      aridlehooveraridlehoover

                      1,8291615




                      1,8291615





















                          0














                          If you can add a :after pseudo Element in parent container of .qa (make sure your parent container is set to position: relative; or position: absolute;)



                          Css for .qa parent element




                          content: "";
                          position: relative;
                          bottom: 0;
                          left:0;
                          right:0;
                          height: /* set this to your (bottom padding of container + bottom margin of .qa box + border width) */
                          background: #fff; /* match this with your parent element background colour*/






                          share|improve this answer





























                            0














                            If you can add a :after pseudo Element in parent container of .qa (make sure your parent container is set to position: relative; or position: absolute;)



                            Css for .qa parent element




                            content: "";
                            position: relative;
                            bottom: 0;
                            left:0;
                            right:0;
                            height: /* set this to your (bottom padding of container + bottom margin of .qa box + border width) */
                            background: #fff; /* match this with your parent element background colour*/






                            share|improve this answer



























                              0












                              0








                              0







                              If you can add a :after pseudo Element in parent container of .qa (make sure your parent container is set to position: relative; or position: absolute;)



                              Css for .qa parent element




                              content: "";
                              position: relative;
                              bottom: 0;
                              left:0;
                              right:0;
                              height: /* set this to your (bottom padding of container + bottom margin of .qa box + border width) */
                              background: #fff; /* match this with your parent element background colour*/






                              share|improve this answer















                              If you can add a :after pseudo Element in parent container of .qa (make sure your parent container is set to position: relative; or position: absolute;)



                              Css for .qa parent element




                              content: "";
                              position: relative;
                              bottom: 0;
                              left:0;
                              right:0;
                              height: /* set this to your (bottom padding of container + bottom margin of .qa box + border width) */
                              background: #fff; /* match this with your parent element background colour*/







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Apr 2 at 19:27

























                              answered Apr 2 at 18:47









                              vaibhav kumarvaibhav kumar

                              475




                              475





















                                  0














                                  I don't like adding a rule when you know you're immediately going to overwrite it, so here's a slightly different version of aridlehoover's answer with only one CSS rule.






                                  .qa:not(:nth-child(-n+2)) 
                                  border-top: 1px solid #ccc;

                                  <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  <div class="qa" style="width:50%;">
                                  <div>Question</div>
                                  <div>Answer</div>
                                  </div>
                                  </div>








                                  share|improve this answer



























                                    0














                                    I don't like adding a rule when you know you're immediately going to overwrite it, so here's a slightly different version of aridlehoover's answer with only one CSS rule.






                                    .qa:not(:nth-child(-n+2)) 
                                    border-top: 1px solid #ccc;

                                    <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    <div class="qa" style="width:50%;">
                                    <div>Question</div>
                                    <div>Answer</div>
                                    </div>
                                    </div>








                                    share|improve this answer

























                                      0












                                      0








                                      0







                                      I don't like adding a rule when you know you're immediately going to overwrite it, so here's a slightly different version of aridlehoover's answer with only one CSS rule.






                                      .qa:not(:nth-child(-n+2)) 
                                      border-top: 1px solid #ccc;

                                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      </div>








                                      share|improve this answer













                                      I don't like adding a rule when you know you're immediately going to overwrite it, so here's a slightly different version of aridlehoover's answer with only one CSS rule.






                                      .qa:not(:nth-child(-n+2)) 
                                      border-top: 1px solid #ccc;

                                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      </div>








                                      .qa:not(:nth-child(-n+2)) 
                                      border-top: 1px solid #ccc;

                                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      </div>





                                      .qa:not(:nth-child(-n+2)) 
                                      border-top: 1px solid #ccc;

                                      <div style="display: flex; flex-wrap: wrap; flex-direction: row">
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      <div class="qa" style="width:50%;">
                                      <div>Question</div>
                                      <div>Answer</div>
                                      </div>
                                      </div>






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Apr 2 at 21:05









                                      GeatGeat

                                      208110




                                      208110



























                                          draft saved

                                          draft discarded
















































                                          Thanks for contributing an answer to Stack Overflow!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid


                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.

                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function ()
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55480980%2fhow-to-remove-border-from-elements-in-the-last-row%23new-answer', 'question_page');

                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                                          QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

                                          PDF-ში გადმოწერა სანავიგაციო მენიუproject page