CSS Introduction

CSS Tutorial What is CSS CSS Syntax CSS Selector How to include CSS CSS Comments

CSS Attributes

CSS Background CSS Border CSS Display CSS Float CSS Font CSS Color CSS Hover CSS Important CSS Line-height CSS Margin CSS Opacity CSS Filter CSS Images CSS Overflow CSS Padding CSS Position CSS Vertical align CSS White space CSS Width Word-wrap in CSS Box-shadow in CSS Text-transform in CSS CSS Outline CSS Visibility CSS Counters CSS Clear fix CSS Icons CSS Justify-content Text-decoration in CSS CSS Lists CSS nth selector CSS Sticky CSS Background-clip CSS Checkbox-style CSS Letter-spacing CSS Navigation bar CSS Overlay CSS Root CSS Specificity CSS Text-indent CSS Text-stroke CSS Zoom CSS Order CSS Descendent selector CSS Clip CSS calc() CSS Background-blend-mode CSS radio-button CSS Superscript and subscript CSS Text-effects CSS Text-align CSS Variables CSS Page-break-before CSS Page-break-inside CSS Page-break-after CSS Content property CSS Word-spacing CSS Animation CSS @keyframes rules CSS Pseudo-classes CSS Pseudo-elements CSS Radial-gradient CSS Translate CSS Gradients CSS z-index CSS Loaders CSS Units CSS Transition CSS Masking CSS Arrow CSS Pagination

Questions

What is Bootstrap CSS What is CSS used for How to center a table in CSS What is a CSS File How to center a button in CSS How to change background color in CSS How to change the font in CSS How to change font size in CSS How to resize an image in CSS How to get rid of bullet pioints in CSS Is CSS a programming language How to edit CSS in WordPress How to use google fonts in CSS How to create blinking text using CSS How to Set Space between the Flexbox Is CSS a Programming Language

Difference

Difference between HTML and CSS Grid Vs Flexbox in CSS Difference between CSS Grid and CSS Flexbox

Misc

Create a 3D text effect using HTML and CSS Hover condition for a:before and a:after in CSS Bem CSS Boder Types CSS Features of CSS Font Face CSS Image Overlay CSS B Tag CSS Carousel CSS CSS Arrow CSS Focus Flex Grow in CSS Bem CSS Features of CSS Font Face CSS Removing Underline from Link in CSS Width Property in CSS Radio Button in CSS

CSS Table

CSS table provides better look and feel. There are various properties of CSS table that are given below.

  • border
  • border-collapse
  • padding
  • width
  • height
  • text-align
  • color
  • background-color

CSS Table Border

You can set the border of the table by using table tag th and td. Example
<!DOCTYPE>  
<html>    
<head>  
<style>    
table, th, td {    
    border: 1px solid black;    
}    
</style>    
</head>  
<body>    
<table>    
<tr><th>NAME</th><th>CLASS</th><th>ROLL NO</th></tr>    
<tr><td>Rahul</td><td>PHD</td><td>1</td></tr>    
<tr><td>James</td><td>MBBS</td><td>2</td></tr>    
<tr><td>Frank</td><td>MCA</td><td>3</td></tr>    
<tr><td>Jack</td><td>BCA</td><td>4</td></tr>    
</table>    
</body>  
</html>
Try Now

Collapse Table Borders

You can collapse the table border by using its property. Example
<!DOCTYPE html>  
<html>  
<head>  
<style>  
table {  
    border-collapse: collapse;  
}  
table, td, th {  
    border: 1px solid black;  
}  
</style>  
</head>  
<body>  
<h2> Example borders collapse</h2>  
<table>  
  <tr>  
    <th>Firstname</th>  
    <th>Lastname</th>  
    <th>Address</th>  
  </tr>      
  <tr>  
    <td>ABC</td>  
    <td>DEM</td>  
    <td>Noida</td>  
  </tr>  
  <tr>  
    <td>Lois</td>  
    <td>Griffin</td>  
   <td>Delhi</td>  
   </tr>  
</table>  
</body>  
</html>
Try Now

CSS Table Padding

You can specify the padding of table header and table data by using CSS padding property.
<!DOCTYPE>  
<html>    
<head>  
<style>    
table, th, td {    
    border: 1px solid black;    
    border-collapse: collapse;    
}    
th, td {  
    padding: 7px;  
}  
</style>    
</head>  
<body>    
<table>    
<tr><th>Product_Name</th><th>Price(rs)</th><th>Total_Product</th></tr>    
<tr><td>TV</td><td>35,000</td><td>60</td></tr>    
<tr><td>Computer</td><td>56.000</td><td>80</td></tr>    
<tr><td>Laptop</td><td>3,500</td><td>82</td></tr>    
<tr><td>Cooler</td><td>20,000</td><td>72</td></tr>    
</table>    
</body>  
</html>
Try Now

Responsive table

A responsive table is used to create responsive table. It will display horizontal scroll bar if the screen is too small. You should use only overflow-x: auto properties.
<!DOCTYPE html>  
<html>  
<head>  
<style>  
table {  
    border-collapse: collapse;  
    width: 100%;  
}  
th, td {  
    text-align: left;  
    padding: 8px;  
}  
tr:nth-child(even){background-color: #f2f2f2}  
</style>  
</head>  
<body>    
<div style="overflow-x:auto;">  
  <table>  
    <tr>  
      <th>Reg No</th>  
      <th>Fname</th>  
      <th>Lname</th>  
      <th>Address</th>  
      <th>Pin</th>  
    </tr>  
    <tr>  
       <td>1</td>  
       <td>Jill</td>  
       <td>Smith</td>  
       <td>Noida</td>  
      <td>50</td>  
    </tr>  
    <tr>  
    <td>2</td>  
      <td>Eve</td>  
      <td>Jackson</td>  
       <td>Delhi</td>  
      <td>94</td>  
   </tr>  
    <tr>  
     <td>3</td>  
      <td>Adam</td>  
      <td>Johnson</td>  
       <td>Patna</td>  
      <td>67</td>  
    </tr>  
  </table>  
</div>  
</body>  
</html>
Try Now

CSS Table Properties

Property Description
Border It is used to set the border properties in one declaration.
border-collapse It specifies whether table borders should be collapsed.
border-spacing It specifies the distance between the borders of adjacent cells.
Caption-side It specifies the placement of a table caption.
Empty-cells It specifies the borders and background on empty cells in a table.
Table-layout It is used to set the layout algorithm to be used for a table.