Answers for "flexbox in react js"

1

flexbox in react js

import React from "react";

const FlexboxPage = () => {
    return (
      <div className="d-flex p-2 col-example">I'm a flexbox container!</div>
    );
}
export default FlexboxPage;

.col-example{
  padding: 1rem;
  background-color: #33b5e5;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
}
Posted by: Guest on February-25-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language