fixing table with css magic ;)

This commit is contained in:
rick
2022-05-12 19:48:13 +00:00
parent 69214b89c8
commit 1bfaae2ac9
2 changed files with 8 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>N0ids Site</title>
</head>
<body style="background-color:#6cc3eb;">

7
web/style.css Normal file
View File

@@ -0,0 +1,7 @@
table, th, td {
border: 1px solid;
border-collapse: collapse;
width: 50%;
max-width: 600px;
padding: 4px;
}