Open In App

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 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. 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.

The Global Styles of Foundation framework comprises useful resets to make sure styling is consistent across all browsers. In addition to that, the SASS version of Foundation allows you to adjust the default settings as per your requirement.



Foundation CSS Global Style Colors Classes:

Example: The following code shows the font size of the text (paragraph tag <p>) displayed.






<!DOCTYPE html>
<html>
 
<head>
    <!-- Compressed CSS -->
    <link rel="stylesheet" href=
 
    <!-- Compressed JavaScript -->
    <script src=
    </script>
    <script src=
    </script>
</head>
 
<body>
    <center>
        <h1 style="color: green">GeeksforGeeks</h1>
        <h3>Foundation CSS Global Font Size</h3>
         
<p>
            Welcome to GeeksForGeeks.
            This is an example line.
        </p>
 
    </center>
    <script>
        $(document).foundation();
    </script>
</body>
 
</html>

Output:

Global Style Font Size

Example: The following code shows how Global font colors are used with callout components to give respective colors.




<!DOCTYPE html>
<html>
 
<head>
    <!-- Compressed CSS -->
    <link rel="stylesheet" href=
 
    <!-- Compressed JavaScript -->
    <script src=
    </script>
    <script src=
    </script>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksforGeeks</h1>
        <h3>Foundation CSS Global Style Colors</h3>
        <br />
        <div class="panel callout primary">
            Primary
        </div>
        <div class="panel callout secondary">
            Secondary
        </div>
        <div class="panel callout success">
            Success
        </div>
        <div class="panel callout warning">
            Warning
        </div>
        <div class="panel callout alert">
            Alert
        </div>
    </center>
    <script>
        $(document).foundation();
    </script>
</body>
 
</html>

Output:

Global Style Colors

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


Article Tags :