Answers for "interactive table in html css"

CSS
6

basic css table

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

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

w3schools create table

CREATE TABLE table_name (
    column1 datatype,
    column2 datatype,
    column3 datatype,
   ....
);
Posted by: Guest on September-05-2020

Browse Popular Code Answers by Language