very good bitesize course, especially using css variables in JS. Thanks!
@logkdogk7 жыл бұрын
Great distilled knowledge - thanks for this one 🙏🏼
@BadPerson0077 жыл бұрын
Some on the text on the bottom is cut off.
@roeltaga6 жыл бұрын
Yeah, but you can open it in Scrimba, and you can see all of it... scrimba.com/g/gcssvariables
@rowerotomja Жыл бұрын
I love it
@davidsalvadordigital3 жыл бұрын
AMAZING
@monkeymonkey1437 жыл бұрын
Nice!
@jaimemnds6 жыл бұрын
Which editor is this?
@prakashnatarajan90736 жыл бұрын
Hey nice tutorial. I want support for IE 11. Is it possible..?
@sumitluitel42123 жыл бұрын
Code for HTML and CSS prior to CSS variable?
@PrinceSingh-zn5pg7 жыл бұрын
how do i use css variables for font family ??
@roeltaga6 жыл бұрын
/* This is an example. Basiclly a variable can have any value you want, and in this case writing "var(--fontilike)" is the same as writing "monospace" */ :root { --fontilike: monospace; } p { font-family: var(--fontilike); }
@PrinceSingh-zn5pg6 жыл бұрын
How do i use custom font ? like i have a font in my local project and i want to use it. First you have to upload it like this @font-face{ src:url("../fonts/OpenSans-Regular.ttf"); font-family:"OpenSans-Regular"; } how do i achieve this with css variables ?
@ayandasimelane35057 ай бұрын
Great. only input, kindly show the full html so we recreate the whole project.
@eduardmart12377 жыл бұрын
What does :root mean?
@SalimMahboubigeek6 жыл бұрын
It's a pseudo class used to select the document's root HTML. In this case it's representing the tag. It's mainly used for declaring global CSS variables. More: developer.mozilla.org/en-US/docs/Web/CSS/:root
@nitensapkota37225 жыл бұрын
You should watch your videos before uploading..some code aren't visible especially at the bottom