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 होती हैं
- separate (by default)
- 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
- separate (by default)
- collapse
Example:-
table, th, td {
border: 1px solid green;
}
table {
border-collapse: collapse;
}