Question about div blocks

if i made a div block(1) of a size 500px by 60px
and when a second div block(2) is created smaller below div block 1.
then when i drag div block2 above div block1,
does div block1 gets smaller to match div block2?

Nope, the size is irrelevant of the order. If you want the size of the two divs to match, give them the same class

thanks @mikeyevin , so if i name the divs i could reuse it with the same property

Correct. Technically any changes you make to an element (outside of modifying the master class) will create a new class. As long as the second element matches that class they will retain the same properties.

1 Like