#is there any thing that convert a div layout design to html css?

38 messages · Page 1 of 1 (latest)

plush cave
#

Is there any thing that convert a div layout design to html css?

plush cave
#

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.

crimson hatch
#

AI

plush cave
#

that's a good idea.

terse ivy
#

what did you plan the boxes on lol

plush cave
#

that's what I mean

terse ivy
#

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 Hmm

plush cave
#

that you can draw with mirosoft paint

terse ivy
#

u shld easily be able to just do it with css grid lol

plush cave
#

ay thanks, I'll look into it

plush cave
#

but can I have grids where cells are uneven?

terse ivy
plush cave
#

wow

terse ivy
#
<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; }```
plush cave
#

curently I am looking into frontly

terse ivy
plush cave
#

and tailwind css

plush cave
terse ivy
plush cave