Hi
I would recommend you to read this documentation:-
Link:- https://docs.adobe.com/docs/en/aem/6-0/develop/mobile/responsive.html
Specifically:- https://docs.adobe.com/docs/en/aem/6-0/develop/mobile/responsive.html#Developing%20a%20Fluid%20Grid
//Developing a Fluid Grid
Basically, you should create a layout like:-
<div class="parent">
<div class="child1"><cq:include path="par" resourceType="foundation/components/parsys" /></div>
<div class="child2"><cq:include path="par" resourceType="foundation/components/parsys" /></div>
<div class="child3"><cq:include path="par" resourceType="foundation/components/parsys" /></div>
</div>
Or Use Bootstrap to make Grid/Tab
Example:- http://getbootstrap.com/2.3.2/scaffolding.html#fluidGridSystem
//And you can apply any CSS properties (float,width,media tags etc.) on these DIVs.
Also Read and go through this helpx article:- https://helpx.adobe.com/experience-manager/using/custom_columns.html
//Creating Adobe Experience Manager Custom Column Components
In your case, create a Layout of Tab using Jquery Plugins, and inside each tab you can fit in parsys.
I hope this will help you.
Thanks and Regards
Kautuk Sahni