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

612 B

h-[1lh]

Tap size target add absolute span in button next to the svg / icon

<span class="absolute top-1/2 left-1/2 -translate-1/2 size-12 [@media(pointer:fine)]:hidden"></span>

scrollable table

<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


<div class="grid grid-cols-[auto_1fr]">
	<a class="col-span-2 grid grid-cols-subgrid">
		<icon class="mr-2" />
		<label />
	</a>
</div>