Open In App

ReactJS MDBootstrap Border Utilities

Last Updated : 10 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

MDBootstrap is a Material Design and bootstrap-based react UI library that is used to make good-looking webpages with its seamless and easy-to-use component. In this article, we will know how to use Border Utilities in ReactJS MDBootstrap.
Border Utilities is used to set the style, color, and width of the border.

Syntax:

<span class="square border"></span>

Creating React Application And Installing Module:

Step 1: Create a React application using the following command.

npx create-react-app foldername

Step 2: After creating your project folder i.e. foldername, move to it using the following command.

cd foldername

Step 3: Install ReactJS MDBootstrap in your given directory.

npm i mdb-ui-kit
npm i mdb-react-ui-kit

Project Structure: It will look like the following.

Project Structure

Step to Run Application: Run the application from the root directory of the project, using the following command.

npm start

Example 1: This is the basic example that shows how to use Border Utilities.

App.js




import React from "react";
  
export default function App() {
    return (
        <div id="gfg">
            <h2>GeeksforGeeks</h2>
            <h4>ReactJS MDBootstrap Border</h4>
  
            <span class="square border border-success 
                rounded">Border Utilities</span>
            <div class="square border border-secondary 
                rounded">Border Utilities</div>
            <h3 class="square border border-danger 
                rounded">Border Utilities</h3>
        </div>
    );
}


Output:

ReactJS MDBootstrap Border Utilities

Example 2: In this example, we will know how to change the width of border utilities.

App.js




import React from "react";
  
export default function App() {
    return (
        <div id="gfg">
            <h2>GeeksforGeeks</h2>
            <h4>ReactJS MDBootstrap Border</h4>
  
            <span class="square border border-2">
                Border Utilities
            </span>
            <br />
            <br />
              
            <div class="square border border-3">
                Border Utilities
            </div>
            <br />
              
            <h3 class="square border border-4">
                Border Utilities
            </h3>
        </div>
    );
}


Output:

ReactJS MDBootstrap Border Utilities

Example 3: In this example, we will know how to use change the color of border utilities.

App.js




import React from "react";
  
export default function App() {
    return (
        <div id="gfg">
            <h2>GeeksforGeeks</h2>
            <h4>ReactJS MDBootstrap Border</h4>
  
            <span class="square border bg-danger 
                rounded">Border Utilities</span>
            <div class="square border bg-warning 
                rounded">Border Utilities</div>
            <h3 class="square border bg-success 
                rounded">Border Utilities</h3>
        </div>
    );
}


Output:

ReactJS MDBootstrap Border Utilities

Reference: https://mdbootstrap.com/docs/b5/react/utilities/borders



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads