Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
About Lesson

border Property

Table में Border Define करने के लिए border Property का इस्तेमाल किया जाता हैं

Example: table, th, td

                       {

                              Border:1px solid blue;

                              }

border-collapse

            border-collapse property की मदद से आप border को single border मे collapse कर सकते है। इसकी दो Values होती हैं

  1. separate (by default)
  2. collapse

Example:-

table, th, td {
border: 1px solid green;
}
table {
border-collapse: collapse;
}

 

border Property

           Border property is used to define border in table.

Example:

table, th, td

            {

                              Border:1px solid blue;

                              }

border-collapse

            With the help of border-collapse property, you can collapse the border into a single border. It has two values

  1. separate (by default)
  2. collapse

Example:-

table, th, td {
border: 1px solid green;
}
table {
border-collapse: collapse;
}

error: Content is protected !!