About 51 results
Open links in new tab
  1. css - How to make borders collapse (on a div)? - Stack Overflow

    Jul 29, 2013 · This Stack Overflow discussion provides solutions for collapsing borders on a div using CSS.

  2. css - Why is the border-collapse property not working for my …

    Apr 16, 2024 · I have the following table with nested tables. Why is the border collapse property not working for my HTML table. I have added the border-collapse property on both the main …

  3. How to collapse the borders of a set of div elements using CSS?

    Could border collapse property help? The border-collapse property sets whether the table borders are collapsed into a single border or detached as in standard HTML.

  4. css - Simulating border-collapse in lists (no tables) - Stack Overflow

    Nov 19, 2022 · With tables we have the border-collapse property for solving this. I've tried omitting the border from one of the sides, but that works only for elements in the middle, the first and …

  5. css - How to create "collapsed" borders around flex items and …

    Feb 28, 2016 · As you can see, the list items inside the ul have a border with the width of 2px, but because of this, the border between elements doubles. I'm looking for a way to make the …

  6. What is the difference between border-collapse: collapse; and …

    Mar 16, 2016 · The border-collapse CSS property determines whether a table's borders are separated or collapsed. In the separated model, adjacent cells each have their own distinct …

  7. html - CSS border radius and border collapse - Stack Overflow

    May 2, 2013 · The border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners? (31 answers) Closed 12 years …

  8. Border style do not work with sticky position element

    May 16, 2018 · I don't know why my border style do not work with position: sticky; attribute. I would like to set border styles on my sticky table header. But I don't want to use the …

  9. The border-radius property and border-collapse:collapse don't …

    Feb 12, 2022 · The border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?

  10. html - CSS: table border separated horizontally and collapsed ...

    Mar 25, 2023 · table { border-collapse: separate; border-spacing: 4px 0; } table td, table th { border: 1px solid black; } Unfortunately, this will create a double-thick line between the rows. …