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 Controls Complete Reference
Next article icon

Foundation CSS Switch

Last Updated : 10 Jun, 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 design beautiful responsive websites, apps, and emails that look 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.

Switch in general gives the user an option to select one of the two possibilities present. 

In this article, we will discuss all the switch properties used in Foundation CSS.

Foundation CSS Switch Classes:

  • Basics: This uses a switch, switch-input, switch-paddle, and show-for-sr classes to create basic switches. 
  • Disabled: This uses a disabled attribute that fixes a switch into a fixed or static position. This can be accomplished by setting this on the input control having the switch-input class.
  • Radio Switch: This uses the type="radio" attribute that indicates the input type of the element with the switch-input class.
  • Sizing Classes: This uses classes like tiny, small, and large to provide different sizes to the buttons.
  • Inner Labels: This uses switch-active and switch-inactive classes to indicate the text to be enabled and disabled respectively when the switch is toggled. 

Syntax:

<div class="switch">      <input class="switch-input" id="xy"           type="checkbox" name="xy">      <label class="switch-paddle" for="xy">          <span class="show-for-sr">...</span>      </label>  </div>

Example 1: Below example illustrates the basic switches created using Foundation CSS.

HTML
<!DOCTYPE html> <html lang="en">     <head>         <title>Foundation CSS Switch</title>         <!-- Compressed CSS -->         <link rel="stylesheet"             href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css">         <link rel="stylesheet"             href= "//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css"/>          <!-- Compressed JavaScript -->         <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.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>             <strong>Foundation CSS Switch</strong>             <br/><br/>             <div class="switch">                 <input class="switch-input"                     id="exampleSwitch"                     type="checkbox"                     name="exampleSwitch">                 <label class="switch-paddle"                     for="exampleSwitch">                 <span class="show-for-sr">GeeksforGeeks</span>                 </label>             </div>         </center>         <script>             $(document).foundation();         </script>     </body> </html> 

Output:

Foundation CSS Switch Basics

Example 2: Below example illustrates the disabled switches created using Foundation CSS.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <title>Foundation CSS Switch Disabled</title>     <!-- Compressed CSS -->     <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css">     <link rel="stylesheet" href= "//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css" />     <!-- Compressed JavaScript -->     <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.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>       <strong>Foundation CSS Switch Disabled</strong>     </center>        <div style="margin: 3% 42%;">         <p>CheckedDisabledSwitch</p>         <div class="switch">           <input class="switch-input" disabled checked="checked"           id="exampleCheckedDisabledSwitch" type="checkbox"             name="exampleCheckedDisabledSwitch">           <label class="switch-paddle" for="exampleCheckedDisabledSwitch">             <span class="show-for-sr">Can't Touch This Checked</span>           </label>         </div>                  <p>UncheckedDisabledSwitch</p>         <div class="switch">           <input class="switch-input" disabled             id="exampleUncheckedDisabledSwitch"             type="checkbox"             name="exampleUncheckedDisabledSwitch">           <label class="switch-paddle"           for="exampleUncheckedDisabledSwitch">             <span class="show-for-sr">               Can't Touch This Unchecked             </span>           </label>         </div>     </div>        <script>         $(document).foundation();     </script> </body>  </html> 

Output:

Foundation CSS Disabled Switch

Example 3: Below example illustrates the Radio switches created using Foundation CSS.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <title>Foundation CSS Radio Switch</title>     <!-- Compressed CSS -->     <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css">     <link rel="stylesheet" href= "//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css" />     <!-- Compressed JavaScript -->     <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.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>         <strong>Foundation CSS Radio Switch</strong>     </center>     <div style="margin: 5% 45%;">         <div class="switch">             <input class="switch-input" id="exampleRadioSwitch1"             type="radio" checked name="testGroup">             <label class="switch-paddle" for="exampleRadioSwitch1">                 <span class="show-for-sr">Radio Switch</span>             </label>         </div>         <div class="switch">             <input class="switch-input" id="exampleRadioSwitch2"             type="radio" checked name="testGroup">             <label class="switch-paddle" for="exampleRadioSwitch2">                 <span class="show-for-sr">Radio Switch</span>             </label>         </div>         <div class="switch">             <input class="switch-input" id="exampleRadioSwitch3"             type="radio" checked name="testGroup">             <label class="switch-paddle" for="exampleRadioSwitch3">                 <span class="show-for-sr">Radio Switch</span>             </label>         </div>     </div>     <script>         $(document).foundation();     </script> </body>  </html> 

Output:

Foundation CSS Radio Switch

Example 4: Below example illustrates the switches created using sizing classes in Foundation CSS.

HTML
<!DOCTYPE html> <html lang="en"> <head>     <title>Foundation CSS Switch Sizing Classes</title>     <!-- Compressed CSS -->     <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"     />     <link rel="stylesheet" href= "//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css"     />     <!-- Compressed JavaScript -->     <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.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>         <strong>Foundation CSS Switch Sizing Classes</strong>     </center>     <div style="margin:5% 45%">         <span>Tiny Switch</span>         <div class="switch tiny">             <input class="switch-input" id="tinySwitch" type="checkbox"                    name="exampleSwitch1"             />             <label class="switch-paddle" for="tinySwitch">                 <span class="show-for-sr">Tiny Sandwiches Enabled</span>             </label>         </div>         <span>Small Switch</span>         <div class="switch small">             <input class="switch-input" id="smallSwitch" type="checkbox"                   name="exampleSwitch2"             />             <label class="switch-paddle" for="smallSwitch">                 <span class="show-for-sr">Small Portions Only</span>             </label>         </div>         <span>Large Switch</span>         <div class="switch large">             <input class="switch-input" id="largeSwitch" type="checkbox"                   name="exampleSwitch3"             />             <label class="switch-paddle" for="largeSwitch">                <span class="show-for-sr">Show Large Elephants</span>             </label>         </div>     </div>      <script>         $(document).foundation();     </script> </body>    </html> 

Output:

Foundation CSS Sizing Switch

Example 5: Below example illustrates the Inner Labels switches created using Foundation CSS.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <title>Foundation CSS InnerLabels Switch</title>     <!-- Compressed CSS -->     <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css">     <link rel="stylesheet" href= "//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css" />     <!-- Compressed JavaScript -->     <script src= "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.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>         <strong>Foundation CSS InnerLabels Switch</strong>                 <p>Select Your Age below</p>     </center>      <div style="margin: 5% 40%;">         <span>Age below 19</span>         <div class="switch large">             <input class="switch-input" id="yes-no1"             type="radio" name="exampleSwitch">             <label class="switch-paddle" for="yes-no1">                 <span class="show-for-sr">Do you like me?</span>                 <span class="switch-active" aria-hidden="true">Yes</span>                 <span class="switch-inactive" aria-hidden="true">No</span>             </label>         </div>         <span>Age between 20-45</span>         <div class="switch large">             <input class="switch-input" id="yes-no2"             type="radio" name="exampleSwitch">             <label class="switch-paddle" for="yes-no2">                 <span class="show-for-sr">Do you like me?</span>                 <span class="switch-active" aria-hidden="true">Yes</span>                 <span class="switch-inactive" aria-hidden="true">No</span>             </label>         </div>         <span>Age above 45</span>         <div class="switch large">             <input class="switch-input" id="yes-no3"             type="radio" name="exampleSwitch">             <label class="switch-paddle" for="yes-no3">                 <span class="show-for-sr">Do you like me?</span>                 <span class="switch-active" aria-hidden="true">Yes</span>                 <span class="switch-inactive" aria-hidden="true">No</span>             </label>         </div>     </div>     <script>         $(document).foundation();     </script> </body> </html> 

Output:
 

Foundation CSS Inner Labels Switch

Reference: https://get.foundation/sites/docs/switch.html


Next Article
Foundation CSS Controls Complete Reference

Y

yasarnnp
Improve
Article Tags :
  • Web Technologies
  • CSS
  • Foundation
  • Foundation-Controls

Similar Reads

    Foundation CSS Tutorial
    Foundation CSS is an open-source, responsive front-end framework developed by ZURB in September 2011. It’s a powerful tool that simplifies the creation of visually appealing responsive websites, apps, and emails that function seamlessly on any device. Renowned companies such as Facebook, eBay, Mozil
    6 min read
    Foundation CSS Introduction
    A Foundation is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. The framework is
    3 min read

    Foundation Setup

    Foundation CSS Global Styles
    Foundation CSS is an open-source & responsive front-end framework built by the ZURB foundation in September 2011, which makes it really easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. The framework is built on Saas-like boot
    3 min read
    Foundation CSS Global Style Colors
    Foundation CSS is an open-source & responsive front-end framework built by the ZURB foundation in September 2011, which makes it really easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. The framework is built on Saas-like boot
    3 min read
    Foundation CSS Flexbox Mode
    Foundation CSS is an open-source and 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, M
    8 min read
    Foundation CSS JavaScript Installation & Initialization
    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,
    4 min read
    Foundation CSS Default Media Queries
    Foundation CSS is an open-source & responsive front-end framework built by the ZURB foundation in September 2011, which makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. The framework is built on SaaS-like bootstrap.
    4 min read
    Foundation CSS Setup Complete Reference
    Foundation CSS Setup includes Default Media Queries that include media features such as width, height, color, and display the content as per the specified screen resolution and Global Style Colors is the default color palette made available for use by Foundation CSS. Complete list of Foundation CSS
    2 min read

    Foundation Containers

    Foundation CSS Accordion
    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 to look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, M
    6 min read
    Foundation CSS Callout
    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 to look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, M
    2 min read
    Foundation CSS Card
    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. One such useful component which is used in modern websi
    4 min read
    Foundation CSS Dropdown
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. This framework
    4 min read
    Foundation CSS Media Object
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. It has numerou
    6 min read
    Foundation CSS Reveal
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. This framework
    3 min read
    Foundation CSS Tables
    Foundation CSS is an open-source and 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 and can be accessible to any device. It is used by many companies such as Facebook, eBay, Moz
    5 min read
    Foundation CSS Tabs
    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 Responsive Accordion Tabs
    Foundation CSS is a front-end framework used for responsive websites, apps, and emails for any device. It also has many front-end templates like Bootstrap, Semantic UI, and other Front-end frameworks. It is flexible, readable and it is completely customizable. Top tech giants like Adobe, Amazon, Cis
    6 min read
    Foundation CSS Containers Complete Reference
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Foundation CSS Container contains features like creating a simple modal, nested model, title
    3 min read

    Foundation Navigation

    Foundation CSS Menu
    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,
    2 min read
    Foundation CSS Dropdown Menu
    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 Drilldown Menu
    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 to look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, M
    3 min read
    Foundation CSS Accordion Menu
    Foundation CSS Accordion Menu is used to convert the basic vertical menu into an expandable accordion menu. To convert the menu into an accordion menu the data-accordion-menu attribute is used. In this article, we will discuss Foundation CSS Accordion Menu. Foundation CSS Accordion Menu Class:accord
    2 min read
    Foundation CSS Top Bar
    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, Mo
    4 min read
    Foundation CSS Responsive Navigation
    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,
    4 min read
    Foundation CSS Magellan
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. The framework
    4 min read
    Foundation CSS Pagination
    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 Breadcrumbs
    Foundation CSS is an open-source & 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 & can be accessible to any device. In this article, we will discuss the Breadcrumb com
    2 min read
    Foundation CSS Navigation Complete Reference
    Foundation CSS Navigation is mostly used for the different behavior of cursor navigation on every element. For ex. Foundation CSS Magellan is used to jump to the given target when the link is clicked. It is used when we want to jump to some specific section directly without scrolling down the webpag
    3 min read

    Foundation Typography

    Foundation CSS Base Typography
    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,
    4 min read
    Foundation CSS Typography Helpers
    Foundation CSS is one of the most popular front-end frameworks used by developers to design the website. It has several useful components to make the website look much more professional and user-friendly. One such component is the Typography helper. In every website, typography is an essential thing
    5 min read
    Foundation CSS Typography Complete Reference
    Foundation CSS Typography facilitates the clean, simple default style, with attractive styling to the basic typographical elements, that enhance the readability. It can be defined for the headings, paragraphs, lists, other inline components, etc, that helps to create an appealing style for the eleme
    2 min read
    Foundation CSS General Complete Reference
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Foundation CSS General use to manage general things like form label Positioning, and upload
    2 min read
    Foundation CSS Kitchen Sink Complete Reference
    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 apps as well as mobile apps. Complete list of Foundation CSS Kitchen Sink are below: Foundation CSS Kitchen Sink Foundat
    2 min read

    Foundation Controls

    Foundation CSS Button Group
    Foundation CSS is an open-source and 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, M
    5 min read
    Foundation CSS Close Button
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. This framework
    3 min read
    Foundation CSS Slider
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. The framework
    3 min read
    Foundation CSS Switch
    Foundation CSS is an open-source and 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 and can be accessible to any device. It is used by many companies such as Facebook, eBay, Moz
    5 min read
    Foundation CSS Controls Complete Reference
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Foundation CSS Controls use to create different types of switches, buttons, sliders, and tra
    2 min read

    Foundation Media

    Foundation CSS Badge
    Foundation CSS is an open-source & 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 & can be accessible to any device. It is utilized by many groups including Facebook, e
    2 min read
    Foundation CSS Responsive Embed
    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, Mo
    2 min read
    Foundation CSS Label
    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,
    2 min read
    Foundation CSS Orbit
    Foundation CSS is an open-source and responsive front-end framework created by ZURB in September 2011 that makes it simple to create stunning responsive websites, apps, and emails that operate on any device. Many companies, like Facebook, eBay, Mozilla, Adobe, and even Disney, use it. The framework
    4 min read
    Foundation CSS Progress Bar
    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 Thumbnail
    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,
    2 min read
    Foundation CSS Tooltip
    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 to look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, M
    6 min read
    Foundation CSS Media Complete Reference
    Foundation CSS Media contains lots of features to make pretty pages and focus on little things like a tooltip, badge coloring, badge icons, label icons, etc. to make a more attractive page. Complete list Foundation CSS Media are listed below: Foundation CSS Badge Foundation CSS Badge ColoringFoundat
    2 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