HTml, css question. Please make it for me.)

Asked 2 years ago, Updated 2 years ago, 66 views

I'm trying to create a comment function on the bulletin board, but I can't catch the layout. I want to make a layout with HTml or css like the second picture Help me

html css layout design

2022-09-21 15:56

1 Answers

You can also make a CSS grid or HTML table, and below is an example of a grid.

<div class="parent"> 
  <div class="item-1">item 1</div> 
  <div class="item-2">item 2</div> 
  <div class="item-3">item 3</div> 
  <div class="item-4">item 4</div> 
</div>
.parent { 
  display: grid; 
  grid-template-areas:
    "i1 i2 i3"
    "i4 i4 i4";
}
.item-1 {
  grid-area: i1;
}
.item-2 {
  grid-area: i2;
}
.item-3 {
  grid-area: i3;
}
.item-4 {
  grid-area: i4;
}

https://jsfiddle.net/32bfex6a/17/


2022-09-21 15:56

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.