Files
Obsidian-Vault/Career/Others/Css Tricks.md
2025-10-25 20:11:21 +02:00

39 lines
688 B
Markdown

---
created: 2025-07-03 09:50
updated: 2025-07-04 07:19
---
h-[1lh]
Tap size target add absolute span in button next to the svg / icon
``` html
<span class="absolute top-1/2 left-1/2 -translate-1/2 size-12 [@media(pointer:fine)]:hidden"></span>
```
scrollable table
``` html
<div class="-mx-parent flex margin-whatever overflow-x-auto">
<div class="px-parent grow">
<table class="min-w-full whitescape-nowrap">
// Bla
<table/>
</div>
</div>
```
Easier if there is a css variable of page padding
Grid stuff
```html
<div class="grid grid-cols-[auto_1fr]">
<a class="col-span-2 grid grid-cols-subgrid">
<icon class="mr-2" />
<label />
</a>
</div>
```
#Snippets #CSS