Html – why border-collapse property is working on non-table element
I have created a div having two divs and I haven't used display:table property then why border-collapse property is still working #tab { border: 2px solid black; border-collapse: separate; border-spacing: 2px; } .row { display: table-row; } .data { display:…