i'm coding for fun but i got curious abot these webkits
can somebody explain for what is this used for, why he need to use webkit transform instead only transform ?
and why webki-keyframes ? somebody explains please...

Can anyone able to use `vscode-styled-components` extension today?
I noticed that after vscode update,
vscode-styled-components extension is not working. What's about on your side?math.random()
k so i have the code which u can check in the codepen
https://codepen.io/-bloop-/pen/bGxRpmw
in the code.. it is supposed to generate number between given min and max value
...

How can I make this layout?
I have tried to make it with flex and grid but the problem is the row height is defined by the largest item. This leaves whitespace below shorter items. I have also tried using flex columns with wrap and a fixed container height but the number of images is dynamic causing them to overflow.
Does anybody know how to make this?...

How do I save whole HTML page with changes in localStorage, and load it up upon browser refresh?
WITH WORKING JS*
It does not need to be HTML, it can be <body> or even <container> (in my case, container is named "refresh-div").
Project link: https://astonishing-cupcake-035f30.netlify.app/
```js
const htmlContent = document.querySelector(".refresh-div").innerHTML;...
Failed to Load module Script
Any Idea what's the problem with the code that I am trying to run?
This is the problem that occurs, it didn't load the javascript.
Thanks Guys...

padEnd not padding equally among multiple lines
Why would this code generate the screenshotted output (not printing directly below HeroicFeats but one indent (tab) less?
``javascript
return ${"Sanctuary".padEnd(15, ' ')}\t\tHeroicFeats
----------------
${this.sanctuary.pools[0].toString().padEnd(15, ' ')}\t\t${this.heroicFeats.platforms[0]}...
invalid input in CSS state/selector
https://codepen.io/JunSu-Ho/pen/KKxLROg
so the effect works when input is valid or empty,
but not when the user put invalid input,
is this can be solved without JS? 🤔
the label should be on top if the input is invalid as well, but not when it's empty ...
How to find index of an Object inside of querySelectorAll?
I need index of element inside of NodeList...
```js
const testlul = document.querySelectorAll(".comment-box")
document.addEventListener('click', (e) => {...
Anyone knows how this is done?
came across this. Anyone know how this done? btw the image is expanding on scroll. i figured it has to something with scale. idont understand like how this one starts scaling when it enters viewport https://gyazo.com/3cac8d10493822338f3b1992a83df98b
Bacground blur problem
I noticed that one element with a blur background overlaps the other one ignoring the z-index, how can I solve this problem?
Css layout help
Hey guys, I'm trying to make a relatively simple layout but cannot get my content to stay within the viewport. I don't want my page to scroll. I have this codepen:
https://codepen.io/vince1444/pen/wvEbvdm
Maybe I'm just blanking, but I cannot for the life of me get it to stay without scrolling. Maybe I'm making this way harder than it has to be?...
how to make carousel
I have react app with vertical swiper
I use swiper js to have swiper with cover flow and rotation
But i see is not fluid on touch scroll like is slow
Not like normal scroll on ant container
Who have same issue...
animation infinite cpu!!!
Why css animation infinite take all cpu 100%
When remove it the cpu will be free just asking to know and what best practices to use css animation...
React Routing
How can I solve this
react-routing problem .
So I have 3 pages /signup , /login and /todos .
Now if a user is already sign in I want it to redirect to /todos and if its a new user I want it to direct to /signup . BUT I don't want the user to access /todos without sign up like changing url to /todos should give the default 404 .
One way is to remove the /todos route and conditionally render the component but then how can I redirect user to /todos when user successfully signup/login .
...For loop in JavaScript
Hello there,
I am creating a simple webpage for a Caesar Cipher.
I wrote the Cipher in Object-Oriented.
...

Function for calculating time between when comment was posted and now? (elapsed time)
Hello! I have a task in my current project where I need to calculate time between when comment was posted and now. So If comment was posted 2 days ago, it will say "2 days ago" etc.
Now, my question is, is there a built in function or whatever that shows elapsed time between in whatever format you want? So, seconds, minutes, hours, days, week, months years etc.
Or do I need to write that code myself? Since it looks like something basic that should be built in....
How to use the return output to display it inside an element in the HTML
Hello there,
I am creating a simple webpage for a Caesar Cipher.
I wrote a Cipher class and I am trying to map a specific method to the button in the HTML.
...
SCSS function
I have inherited some code which includes a function that looks like it should work to me.
```// rem units
@function rem($px, $base: $base) {
@return math.div($px, $base) * 1rem;...
