give equal width to elements in container div

<div className="flex w-[60%] h-[60%] mt-[5%] rounded-md border-2 border-[#000]">
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
  <div className="flex flex-col bg-white h-full"></div>
</div>

width of container div is 70% and I want to give all the div in container div equal width I'm using tailwind css
Was this page helpful?