Blog | falk-m.de
This blog is not for you, not only.
Like other developers, I read articles, test new features, analyze code from others and so on.
Also, I have some interesting code snippets used in projects, if I need them, I always search in old projects.
This blog is my central place now, to collect interesting code snippets, features, etc.
scoped css variables
from falk-m.de
· 2024-10-29
CSS
A Example:
There is a default button with a icon and a text inside.
the button is blue by default with black text color and black icon.
:root {
--blue: #cbe7ff;
--red: #ff300b;
--yello...
image gallery
from falk-m.de
· 2024-10-28
CSS
Today I saw a nice responsive image gallery.
.gallery {
--min: 15rem;
--aspect-ratio: 4/3;
--gap: 10px;
display: flex;
...
Links and stuff of the week
from falk-m.de
· 2024-10-18
CSS
Links
quilljs WYSIWYG Editor
cally calendar and date picking component
inline-flex
I read in a other blox display: inline-flex and never heared about it before.
This codepen discripe the diffrenc...
font with integrated syntax highlighting
from falk-m.de
· 2024-10-18
CSS
With modern font techniques, I dont know how it works (font colors and so on),
it is possible to hishlight the syntax or source code.
htmnl, js, css.
I don't read somethoing amount php support:/
Bu...
responsive font-size
from falk-m.de
· 2024-04-02
CSS
Here are three simple lines of code to smooth sizing the root font size depends on the screen size.
:root {
font-size: calc(1rem + 0.25vw);
}
You can also use 'clamp' to use the smooth sizing o...