Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Frakass.jsx
Accessibilité
Commits
9454be17
Commit
9454be17
authored
Nov 04, 2021
by
Skry
Browse files
add table css
parent
a24b1927
Changes
2
Hide whitespace changes
Inline
Side-by-side
css/tables.css
0 → 100644
View file @
9454be17
@tailwind
base
;
@tailwind
components
;
@tailwind
utilities
;
tr
{
}
td
{
@apply
bg-red-600;
}
pages/tableau.html
0 → 100644
View file @
9454be17
<!DOCTYPE html>
<html
lang=
"fr"
>
<head>
<meta
charset=
"UTF-8"
/>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<title>
Accessibilité - Accueil
</title>
<link
rel=
"stylesheet"
href=
"../css/tailwind.css"
/>
<link
rel=
"stylesheet"
href=
"../css/tables.css"
/>
</head>
<body>
<main>
<table
class=
"table-auto border-primary"
>
<caption>
Trouver un titre pour ce tableau
</caption>
<tbody>
<tr>
<td>
</td>
<td>
</td>
<th
colspan=
"3"
scope=
"colgroup"
>
Vêtements
</th>
<th
colspan=
"2"
scope=
"colgroup"
>
Accessoires
</th>
</tr>
<tr>
<td>
</td>
<td>
</td>
<th
scope=
"col"
>
Pantalons
</th>
<th
scope=
"col"
>
Jupes
</th>
<th
scope=
"col"
>
Robes
</th>
<th
scope=
"col"
>
Bracelets
</th>
<th
scope=
"col"
>
Bagues
</th>
</tr>
<tr>
<th
rowspan=
"3"
scope=
"rowgroup"
>
Belgique
</th>
<th
scope=
"row"
>
Anvers
</th>
<td>
56
</td>
<td>
22
</td>
<td>
43
</td>
<td>
72
</td>
<td>
23
</td>
</tr>
<tr>
<th
scope=
"row"
>
Gand
</th>
<td>
46
</td>
<td>
18
</td>
<td>
50
</td>
<td>
61
</td>
<td>
15
</td>
</tr>
<tr>
<th
scope=
"row"
>
Bruxelles
</th>
<td>
51
</td>
<td>
27
</td>
<td>
38
</td>
<td>
69
</td>
<td>
28
</td>
</tr>
<tr>
<th
rowspan=
"2"
scope=
"rowgroup"
>
Pays-bas
</th>
<th
scope=
"row"
>
Amsterdam
</th>
<td>
89
</td>
<td>
34
</td>
<td>
69
</td>
<td>
85
</td>
<td>
38
</td>
</tr>
<tr>
<th
scope=
"row"
>
Utrecht
</th>
<td>
80
</td>
<td>
12
</td>
<td>
43
</td>
<td>
36
</td>
<td>
19
</td>
</tr>
</tbody>
</table>
</main>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment