What is the use of a hidden border? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the use of a hidden border?

20th Jul 2016, 5:40 PM
bhargav
bhargav - avatar
1 Answer
+ 1
border-style: hidden will override a border conflict. border-style: none will be ignored in a border conflict. For example, say you have two adjacent table cells. One specifies a border, one says none. If you use border collapse to merge the borders, the 'none' style will be ignored and a border appear. If you use 'hidden' on the second cell, no border will appear on that cell, even with border collapse.
21st Jul 2016, 1:03 PM
Brian