Foundation CSS Utilities Complete Reference

Foundation CSS has different types of utility like Prototyping Utilities Sizing is used to give width and height to an element. There is a various utility that helps to make it easy for us.

Complete list Foundation CSS Utility are listed below:

Below example will give you a brief idea about the Utilities of Foundation CSS: 

Example:

HTML




<html>
  
<head>
    <link crossorigin="anonymous" 
          rel="stylesheet" 
          href=
"https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css">
    <link rel="stylesheet"
          href=
"https://get.foundation/sites/docs/assets/css/docs.css">
</head>
  
<body>
    <h3 style="color:green">w3wiki</h3>
    <h5>Foundation CSS Prototyping Utilities Separator</h5>
    <br>
    <h3 class="separator-left">Beginner</h3>
    <h3 class="separator-center">for</h3>
    <h3 class="separator-right">Beginner</h3>
</body>
  
</html>


Output: 

Foundation CSS Utilities 



Contact Us