-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolitique-comparaison-vs-comparatif.html
67 lines (49 loc) · 1.83 KB
/
politique-comparaison-vs-comparatif.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<!-- https://www.geeksforgeeks.org/what-is-greater-than-sign-selector-in-css/
-->
<style>
.g {
background: green;
}
.r {
background: red;
}
table{ border-collapse: collapse;}
table, th, td {
border: 1px solid;
}
body{ scrollbar-color: purple white; }
caption {
caption-side: bottom;
padding: 10px;
font-weight: bold;
}
</style>
</head>
<body>
<br>
Le 20/02/2024
<br>
v = 242
<!-- auto https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout -->
<!-- border https://www.w3schools.com/css/css_table.asp
colors //https://stackoverflow.com/questions/31395859/background-color-of-table-cells-using-css-and-html
accents https://www.designvegetal.com/gadrat/cours/informatique/html/accents.html
Categorie G th https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption -->
<div style="overflow-x:auto;">
<!-- : Responsive https://www.w3schools.com/css/css_table_responsive.asp-->
<table table-layout: auto; width: 150px;>
<caption>Tableau comparatif des différences politiques</caption>
<tr><th></th><th><a href="">RN</a></th><th>Reconquete</th></tr>
<tr><th>Europe</th><td class="g">V</td><td class="r"><a href="https://www.youtube.com/watch?v=31i8vvIkDOA&ab_channel=FaitesLaFrance">X</a></td></tr>
<tr><th>RSA travail</th><td class="r">X</td><td class="g">V</td></tr>
<tr><th>Immigration légale</th><td class="g">V</td><td class="r">X</td></tr>
<tr><th>Islam</th><td class="g">V</td><td class="r">X</td></tr>
<tr><th></th><td></td><td></td></tr>
</table>
</div>
<br>
<a class="navbar-brand" href="index-des-ressources-resources-moueza-peter.html">Index des ressources</a>
</body>
</html>