top of page
90s theme grid background
Writer's pictureGunashree RS

Your Ultimate Guide to Rounded Table Corners in CSS

Updated: Sep 16

Introduction

Creating visually appealing tables can significantly enhance the user experience on your website. One design element that adds a touch of elegance to tables is rounded corners. While this might seem challenging at first, especially when you want to avoid images or JavaScript, it is entirely possible with pure CSS. This guide will walk you through the process of adding rounded corners to your HTML tables using CSS, ensuring a clean and modern look for your web designs.


Understanding CSS Border Radius

The border-radius property in CSS is used to create rounded corners for elements. By applying this property to table elements, you can achieve the desired rounded corner effect.


Basic Implementation of Rounded Table Corners


Rounded Table Corners

1. Setting Up the HTML Structure

First, create a simple HTML table structure:

html

<table>

  <thead>

    <tr>

      <th>Header 1</th>

      <th>Header 2</th>

      <th>Header 3</th>

    </tr>

  </thead>

  <tbody>

    <tr>

      <td>Data 1</td>

      <td>Data 2</td>

      <td>Data 3</td>

    </tr>

    <tr>

      <td>Data 4</td>

      <td>Data 5</td>

      <td>Data 6</td>

    </tr>

  </tbody>

</table>

2. Applying CSS Styles for Rounded Corners

CSS Code:

css

table {

  border-collapse: separate;

  border-spacing: 0;

  width: 100%;

}

th, td {

  padding: 10px;

  border: 1px solid ccc;

}

th:first-child {

  border-top-left-radius: 10px;

}

th:last-child {

  border-top-right-radius: 10px;

}

tr:last-child td:first-child {

  border-bottom-left-radius: 10px;

}

tr:last-child td:last-child {

  border-bottom-right-radius: 10px;

}

Detailed Steps to Achieve Rounded Corners with Borders


1. Setting the Border Collapse Property

Using border-collapse: separate; ensures that the borders do not collapse into a single border, which is essential for achieving rounded corners.


2. Specifying Border Spacing

By setting border-spacing: 0;, you eliminate any gaps between the borders of table cells, ensuring a seamless look.


3. Applying Border Radius to Specific Cells

Apply border-radius to the first and last cells of the table headers and the first and last cells of the last row. This gives the appearance of rounded corners on the table.


Advanced Techniques for Rounded Table Corners


1. Adding Hover Effects

Enhance user interaction by changing the background color of table rows on hover.


CSS Code:

css

tr:hover td {

  background-color: f1f1f1;

}

2. Creating a Shadow Effect

Adding a shadow can give your table a more modern and elevated look.


CSS Code:

css

table {

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

Common Issues and Troubleshooting


Borders Not Appearing

Ensure that the border property is applied to both th and td elements. Additionally, check that border-collapse: separate; is correctly set on the table.


Rounded Corners Not Visible

If the rounded corners are not visible, verify that border-radius is correctly applied to the appropriate table cells and that border-spacing is set to 0.


Hover Effects Not Working

Make sure the hover effect is applied to tr:hover td and not directly to the tr or td elements separately.


Best Practices for Using Rounded Table Corners


1. Consistency in Design:

  • Maintain consistent use of rounded corners across your website to create a cohesive look.

2. Accessibility:

  • Ensure that the use of rounded corners does not compromise the readability and accessibility of your table content.

3. Performance:

  • Avoid overly complex CSS that can slow down rendering times, especially on large tables.


Use Cases for Rounded Table Corners


1. Data Presentation: Rounded corners can make data tables look more inviting and easier to read, enhancing the overall user experience.

2. Pricing Tables: For pricing tables on product pages, rounded corners can add a modern touch that aligns with contemporary web design trends.

3. Interactive Dashboards: In web applications with interactive dashboards, rounded corners can help differentiate various sections and make the interface more user-friendly.


Conclusion

Creating tables with rounded corners using pure CSS is a straightforward process that can significantly enhance the visual appeal of your web pages. By understanding the basics of the border-radius property and implementing best practices, you can create elegant and modern tables without relying on images or JavaScript. Whether for data presentation, pricing tables, or interactive dashboards, rounded table corners add a touch of sophistication and improve the overall user experience.


Key Takeaways

  • Use border-radius to create rounded corners for table elements.

  • Ensure border-collapse: separate; and border-spacing: 0; for proper styling.

  • Enhance user experience with hover effects and shadows.

  • Address common issues by verifying CSS properties and their application.

  • Apply best practices for consistency, accessibility, and performance.




FAQs


Why are my table borders not rounded? 


Ensure that you are using border-collapse: separate; and applying border-radius to the correct cells. Also, check that border-spacing is set to 0.


Can I use rounded corners for a table with merged cells? 


Yes, but you may need to adjust your CSS to account for the merged cells, ensuring the border-radius property is applied appropriately.


How do I create rounded corners for a responsive table? 


Use percentage values for border-radius to ensure that the rounded corners scale appropriately with the table size.


Can I add both rounded corners and a shadow effect to my table? 


Yes, you can use the box-shadow property in combination with border-radius to achieve both effects.


What is the difference between border-collapse: collapse; and border-collapse: separate;? 


border-collapse: collapse; merges adjacent table cell borders into a single border, while border-collapse: separate; keeps them separate, allowing for rounded corners.


Is it possible to apply rounded corners to individual table cells?


 Yes, you can apply border-radius to any individual th or td element to achieve rounded corners for specific cells.


How do I add padding to table cells with rounded corners? 


Use the padding property within the th and td selectors to add padding without affecting the rounded corners.


Can I animate the rounded corners of a table? 


Yes, you can use CSS transitions to animate the border-radius property for smooth corner animations.


Article Sources

Comments


bottom of page