[Support request] Border Radius Table

Home Forums Support [Support request] Border Radius Table

Home Forums Support Border Radius Table

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1659421
    Stefan

    Hello,

    how can I round only the outer edge of a table? A simple table with rounded corners.

    I have been trying for days without success.

    #1659463
    Leo
    Staff
    Customer Support

    Hi there,

    Any chance you can link us to the site in question?

    You can use the private information field.

    Let me know 🙂

    #1659585
    Stefan

    Yes.

    The link is at the bottom

    #1659699
    Ying
    Staff
    Customer Support

    Hi Stefan,

    Try this CSS:

    table {
        border-radius: 25px;
        border: 1px solid #000;
    }
    tbody tr:first-child th:first-child {
        border-top: 0;
        border-left: 0;
    tbody tr:first-child th:last-child {
        border-top: 0;
        border-right: 0;
    }
    tbody tr:last-child td:first-child {
        border-bottom: 0;
        border-left: 0;
    }
    tbody tr:last-child td:last-child {
        border-bottom: 0;
        border-right: 0;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.