Answers for "basic css table"

CSS
3

table css

tr , th , td  {
    border: 1px solid black;
    padding: 5%;
    text-align: center;
}
Posted by: Guest on October-06-2020
1

basic css table

table, td, th {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
}
Posted by: Guest on June-17-2021

Browse Popular Code Answers by Language