[Solved] want to remove the space between two divisions using css


For the start do

li { margin-bottom: 0; margin-top: 0;}

since by default li element has bottom/top (depending on a browser) margin.
If you need to “squeeze” the elements even more, then go with the negative values for the margin.

1

solved want to remove the space between two divisions using css