Using ____, borders are merged into single border
Understand the Problem
The question is asking about CSS properties related to how borders are handled in web design. Specifically, it is looking for the correct syntax that indicates the merging of borders into a single line.
Answer
border-collapse
The final answer is border-collapse.
Answer for screen readers
The final answer is border-collapse.
More Information
The border-collapse
CSS property specifies whether table borders should collapse into a single border or remain separate. When set to 'collapse', adjacent borders are merged, resulting in a cleaner design.
Tips
A common mistake is to use border-collapse
on non-table elements as it is specifically intended for tables.
Sources
- How to create a collapsed border in HTML - Tutorials Point - tutorialspoint.com
- CSS border-collapse property - W3Schools - w3schools.com