Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Bootstrap
  • Tailwind
  • Bulma
  • Foundation
  • Primer
  • Spectre
  • Onsen UI
  • Semantic UI
  • Pure CSS
  • Materialize
  • SASS
  • LESS
  • Blaze UI
  • CSS Frameworks
  • Color Picker
  • CSS
  • CSS Formatter
  • Web Technology
Open In App
Next Article:
Foundation CSS Kitchen Sink Grid
Next article icon

Foundation CSS Kitchen Sink Grid

Last Updated : 22 Mar, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to layout stunning responsive websites, apps, and emails that appear amazing and can be accessible to any device. It is used by many companies such as Facebook, eBay, Mozilla, Adobe, and even Disney. The framework is built on SaaS-like bootstrap. It is more sophisticated, flexible, and easily customizable. It also comes with CLI, so it’s easy to use it with module bundlers. It offers the Fastclick.js tool for faster rendering on mobile devices. In this article, we will discuss the Kitchen Sink Grid in Foundation CSS.  Foundation CSS Kitchen Sink has the foundation elements to work well in our websites and applications. The Kitchen Sink Grid is used to make responsive layout designs both for web app as well as the mobile app.

Foundation CSS Kitchen Sink Grid Classes:

  • [size]-n: This class is used to specify the alignment of various column in a row at different screen sizes. Here size can be small, medium or large and n can be 1,2,3,4,5,6,7,8.
  • column: This class is used to define the current element as a column.

Syntax:

<div class ="row callout">      <div class="callout small-n medium-n large-n column">          ...........      </div>  </div>

Example 1: Below is the example that illustrates the use of Kitchen Sink Grid using various screen sizes class. 

HTML
<!DOCTYPE html> <html lang="en">  <head>     <title>Foundation CSS Kitchen Sink Grid</title>      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-float.min.css"         crossorigin="anonymous">      <link rel="stylesheet"         href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-prototype.min.css"         crossorigin="anonymous">      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-rtl.min.css"         crossorigin="anonymous">      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"         crossorigin="anonymous">      <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js">     </script>      <script crossorigin="anonymous" src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js">     </script>      <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js">     </script> </head>  <body>     <center>         <h1 style="color:green;">             GeeksforGeeks         </h1>          <h5>Foundation CSS Kitchen Sink Grid</h5>          <div class="row callout">             <div class="callout small-2           medium-3 large-4 columns">                 small-2 medium-3 large-4 columns             </div>              <div class="callout small-4            medium-3 large-4 columns">                 small-4 medium-3 large-4 columns             </div>              <div class="callout small-6           large-4 columns">                 small-6 medium-3 large-4 columns             </div>         </div>     </center>      <script>         $(document).ready(function () {             $(document).foundation();         })     </script> </body>  </html> 


Output:


Example 2: Below is the another example that illustrates the use of Kitchen Sink Grid using various screen sizes class. 

HTML
<!DOCTYPE html> <html lang="en">  <head>     <title>Foundation CSS Kitchen Sink Grid</title>      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-float.min.css"         crossorigin="anonymous">      <link rel="stylesheet"         href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-prototype.min.css"         crossorigin="anonymous">      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation-rtl.min.css"         crossorigin="anonymous">      <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"         crossorigin="anonymous">      <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js">     </script>      <script crossorigin="anonymous" src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js">     </script>      <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js">     </script> </head>  <body>     <center>         <h1 style="color:green;">             GeeksforGeeks         </h1>          <h5>Foundation CSS Kitchen Sink Grid</h5>          <div class="row callout">             <div class="callout large-3 columns">                 small-12 medium-12 large-3 columns             </div>              <div class="callout large-6 columns">                 small-12 medium-12 large-6 columns             </div>              <div class="callout large-3 columns">                 small-12 medium-12 large-3 columns             </div>         </div>     </center>      <script>         $(document).ready(function () {             $(document).foundation();         })     </script> </body>  </html> 


Output:

Reference: https://get.foundation/sites/docs/kitchen-sink.html#grid


Next Article
Foundation CSS Kitchen Sink Grid

T

thacker_shahid
Improve
Article Tags :
  • Web Technologies
  • CSS
  • Geeks Premier League
  • Geeks-Premier-League-2022
  • Foundation
  • Foundation-Kitchen-Sink

Similar Reads

    Foundation CSS Kitchen Sink Flex Grid
    Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay,
    3 min read
    Foundation CSS Kitchen Sink
    Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to layout stunning responsive websites, apps, and emails that appear amazing and can be accessible to any device. Kitchen Sink has the foundation elements to work well o
    2 min read
    Foundation CSS Kitchen Sink Menu
    Foundation CSS is the free, open-source front-end CSS framework used to build beautiful, responsive websites, applications, and emails that work on any type of device. It is written using HTML, CSS, and Javascript. It is used by many companies like Amazon, Facebook, Disney, etc. It uses Saas compile
    2 min read
    Foundation CSS Kitchen Sink Tabs
    Foundation CSS is the frontend framework of CSS that is used to build responsive websites, apps, and emails that work perfectly on any device. It is written using HTML, CSS, and Javascript and is used by many famous companies like Amazon, Facebook, eBay, etc. It uses packages like Grunt and Libsass
    3 min read
    Foundation CSS Kitchen Sink Forms
    Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay,
    3 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences