Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
TIL about empty cells
Search
Gunnar Bittersmann
March 29, 2021
Programming
41
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
TIL about empty cells
Gunnar Bittersmann
March 29, 2021
More Decks by Gunnar Bittersmann
See All by Gunnar Bittersmann
Responsive typography 2
gunnarbittersmann
0
180
Go home, Prettifier, you’re drunk!!
gunnarbittersmann
0
130
3 Fehler sind zu finden
gunnarbittersmann
0
210
TIL that the future :has already begun
gunnarbittersmann
0
140
TIL how to clear floats
gunnarbittersmann
0
150
TIL about showModal (from small things big things one day come)
gunnarbittersmann
0
150
Inclusive Design 24 2022 – Gunnar’s picks
gunnarbittersmann
0
120
The color rebeccapurple
gunnarbittersmann
0
210
Mehrsprachige Websites
gunnarbittersmann
0
130
Other Decks in Programming
See All in Programming
FDEが実現するAI駆動経営の現在地
gonta
2
290
これって Effect でできたのでは? / TSKaigi Mashup Kansai #2
susisu
0
250
Japan Community Day at Kubecon + CloudNativeCon Japan 2026: Learning Container Privilege Control by Building My Own Low-Level Container Runtime
ternbusty
1
170
<title><a id="</title>君はこのHTMLをパースできるか"></a></title> #雑LT_study
pizzacat83
0
160
まだ間に合う!今年の夏こそSchemeのマクロ展開器を完全理解!
omasanori
0
160
2年かけて Deno に DOMMatrix を実装した話 / How I implemented DOMMatrix in Deno over two years
petamoriken
0
210
「つくるAI」だけではバグは見つからない ~テストに必要な「見つけるAI」を分離させる戦略~
mfunaki
0
120
Android CLI
fornewid
0
230
Dockerfile CMD for Node.js
grazie1999
0
110
Oxlintはいいぞ(続)
yug1224
1
270
in-process GraphQL のすすめ #ginzajs
izumin5210
4
1.4k
Discordを用いたラボオートメーション関連情報収集の自動化
noguhiro2002
0
170
Featured
See All Featured
A better future with KSS
kneath
240
18k
Thoughts on Productivity
jonyablonski
76
5.3k
How to build a perfect <img>
jonoalderson
1
5.9k
Marketing to machines
jonoalderson
1
5.7k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1.3k
Docker and Python
trallard
47
4.1k
Designing for Performance
lara
611
70k
Lightning talk: Run Django tests with GitHub Actions
sabderemane
0
240
職位にかかわらず全員がリーダーシップを発揮するチーム作り / Building a team where everyone can demonstrate leadership regardless of position
madoxten
64
56k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
10k
How GitHub (no longer) Works
holman
316
150k
Bash Introduction
62gerente
615
220k
Transcript
Photo by Umanoide on Unsplash TIL about empty cells
None
None
None
None
None
<ol :class="$style.pagerList"> <li v-if="!firstPage" :class="$style.pagerFirst"> <a href="…">erste Seite"</a> "</li> <li
v-if="!firstPage" :class="$style.pagerPrevious"> <a href="…"> <span class="visually-hidden">vorige Seite"</span> <svg aria-hidden="true">…"</svg> "</a> "</li> <li v-for="index in neighbors" :class="$style.pagerNeighbor"> <a href="…"> <span class="visually-hidden">Seite"</span> {{ index }} "</a> "</li> <li v-if="!lastPage" :class="$style.pagerNext"> <a href="…">
<ol :class="$style.pagerList"> <li :class="$style.pagerFirst"> <a :href="!firstPage ? "…" : "">erste
Seite"</a> "</li> <li:class="$style.pagerPrevious"> <a :href="!firstPage ? "…" : ""> <span class="visually-hidden">vorige Seite"</span> <svg aria-hidden="true">…"</svg> "</a> "</li> <li v-for="index in neighbors" :class="$style.pagerNeighbor"> <a href="…"> <span class="visually-hidden">Seite"</span> {{ index }} "</a> "</li> <li :class="$style.pagerNext"> <a :href="!lastPage ? "…" : "">
.pager"__list { display: inline-grid; grid-template-columns: auto repeat(var("--items, 5), 1fr) auto;
grid-template-rows: auto auto; } .pager"__neighbor:first-child { grid-column: 2; }
.pager"__list { display: inline-grid; grid-template-columns: 1fr repeat(var("--items, 5), 1fr) 1fr;
grid-template-rows: auto auto; } .pager"__neighbor:first-child { grid-column: 2; }
Irrungen und Wirrungen Photo by Crawford Jolly on Unsplash