#is there any thing that convert a div layout design to html css?
38 messages · Page 1 of 1 (latest)
so I've planned multilple boxes on a page.
now I need to convert them, boxes to div in html css
so I can put content inside the boxes.
AI
I would like to be able to turn this image into html css div tags.
that's what I mean
is that just an image
or figma
there might be some figma plugins for it idk
you can just use a grid to make that quickly no?
or are you only looking for something to do that for you 
that's an image
that you can draw with mirosoft paint
yeah
ay thanks, I'll look into it
it will divide into grids
but can I have grids where cells are uneven?
ye u can choose how many rows and columns each div covers
can it make this?
<div class="parent">
<div class="div1"> </div>
<div class="div2"> </div>
<div class="div3"> </div>
<div class="div4"> </div>
<div class="div5"> </div>
<div class="div6"> </div>
<div class="div7"> </div>
<div class="div8"> </div>
</div>```
```css
.parent {
display: grid;
grid-template-columns: repeat(9, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.div1 { grid-area: 1 / 1 / 3 / 3; }
.div2 { grid-area: 3 / 1 / 4 / 2; }
.div3 { grid-area: 4 / 1 / 5 / 2; }
.div4 { grid-area: 1 / 3 / 3 / 6; }
.div5 { grid-area: 3 / 2 / 5 / 6; }
.div6 { grid-area: 1 / 6 / 5 / 8; }
.div7 { grid-area: 1 / 8 / 4 / 10; }
.div8 { grid-area: 4 / 8 / 5 / 10; }```
curently I am looking into frontly
thats the thing i made in the image above
and tailwind css
oh
Tailwind Grid Generator - a user-friendly tool designed for web developers to effortlessly create customizable Tailwind CSS grids for seamless web development.

oh thx

