Foundation CSS Prototyping Utilities Border None Last Updated : 16 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. In this article, we will discuss the Prototyping Utilities Margin Helpers Classes in Foundation CSS. In Foundation CSS, Prototyping Utilities Border none are used to sets the border property of any element to none. Foundation CSS Prototyping Utilities Border none classes: border: This class is used to apply the border property on any element.border-none: This class is used to remove the border of any element. Syntax: <div class="callout border-none"> ... </div> Example 1: Below is the example that illustrates the use of Prototyping Utilities Border none using the border class. HTML <!DOCTYPE html> <html> <head> <title>Foundation CSS Prototyping Utilities Border None</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"> </head> <body style="margin-inline: 10rem;"> <center> <h2>GeeksforGeeks</h2> <h3>Prototyping Utilities Border none</h3> <div class="callout success border"> GeeksforGeeks is a Computer Science Portal. </div> </center> </body> </html> Output: Foundation CSS Prototyping Utilities Border none Example 2: Below is the example that illustrates the use of Prototyping Utilities Border none using the border-none class. HTML <!DOCTYPE html> <html> <head> <title>Foundation CSS Prototyping Utilities Border None</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"> </head> <body style="margin-inline: 10rem;"> <center> <h2>GeeksforGeeks</h2> <h3>Prototyping Utilities Border none</h3> <div class="callout success border-none"> GeeksforGeeks is a Computer Science Portal. </div> </center> </body> </html> Output: Foundation CSS Prototyping Utilities Border none Reference: https://get.foundation/sites/docs/prototyping-utilities.html#border-none Comment More infoAdvertise with us Next Article Foundation CSS Prototyping Utilities Border None S singhtripti Follow Improve Article Tags : Web Technologies CSS Geeks Premier League Geeks-Premier-League-2022 Foundation Foundation-Utilities +1 More Similar Reads Foundation CSS Prototyping Utilities Border box 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 2 min read Foundation CSS Prototyping Utilities Foundation CSS is an open-source and responsive front-end framework built by the 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. The Prototyping Utilities facilitate the building o 3 min read Foundation CSS Prototyping Utilities Overflow 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 Prototyping Utilities Sizing 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. In this article, we will discuss the Prototyping Utilit 2 min read Foundation CSS Prototyping Utilities Margin Helpers 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. In this article, we will discuss the Prototyping Utilit 3 min read Like