Zuletzt aktiv 7 months ago

xl hat die Gist bearbeitet 7 months ago. Zu Änderung gehen

1 file changed, 18 insertions, 2 deletions

css.md

@@ -1,4 +1,4 @@
1 - fixed header
1 + header: fixed
2 2 ```css
3 3 .fixed-header {
4 4 position: fixed;
@@ -6,10 +6,26 @@ fixed header
6 6 }
7 7 ```
8 8
9 - sticky header
9 + header: sticky
10 10 ```css
11 11 .sticky-header {
12 12 position: sticky;
13 13 top: 20px;
14 14 }
15 + ```
16 +
17 + table-layout: fixed
18 + ```css
19 + table {
20 + width: 100%;
21 + table-layout: fixed;
22 + }
23 + ```
24 +
25 + table-layout: auto/scrollable
26 + ```css
27 + table {
28 + width: 100%;
29 + table-layout: auto;
30 + }
15 31 ```

xl hat die Gist bearbeitet 7 months ago. Zu Änderung gehen

1 file changed, 15 insertions

css.md(Datei erstellt)

@@ -0,0 +1,15 @@
1 + fixed header
2 + ```css
3 + .fixed-header {
4 + position: fixed;
5 + top: 20px;
6 + }
7 + ```
8 +
9 + sticky header
10 + ```css
11 + .sticky-header {
12 + position: sticky;
13 + top: 20px;
14 + }
15 + ```
Neuer Älter