+ 4
What does border-collapse :separate do?
I don't understand what (border-collapse: separate;) really do? I tried to find the answer but yet couldn't find! pls anyone help me
4 Respuestas
+ 3
The Property border-collapse sets if the borders of the table are collapsed into a single border or if they are detached.
border-collapse:separate = the borders are detached. This is the Default. It means that if there is border spacing and empty cells they will not be ignored.
+ 3
it would be more helpful to understand sir! if you give me a example by code
+ 2
If you have time check it on the w3schools.com
That's where I go when I have troubles.
^_^
+ 2
Sourov Ajmain, I made a simple interactive example:
https://code.sololearn.com/WyNzbX72MugS/?ref=app . I hope you will find it useful (if you read this).
[edit]
W3schols has got a similar example: https://www.w3schools.com/cssref/playit.asp?filename=playcss_border-collapse .