dfg
dfg
RReactiflux
Created by Vu Nguyen on 1/5/2024 in #help-js
hoangvu12 – 20-03 Jan 5
It's probably technically faster, but I'd be surprised if it's significantly so. And then you also have to factor in development time and complexity
7 replies
RReactiflux
Created by Vu Nguyen on 1/5/2024 in #help-js
hoangvu12 – 20-03 Jan 5
for i/o bound stuff, i would image node is probably comparable to rust but rust will hands down out-perform node on CPU-bound ops
7 replies
RReactiflux
Created by Telash on 5/27/2023 in #react-forum
Why I have to put content inside those divs in order to make them appear?
please provide an alternative solution instead of "revisit fundamentals" "that's not recommended"
14 replies
RReactiflux
Created by Telash on 5/27/2023 in #react-forum
Why I have to put content inside those divs in order to make them appear?
if you want to have a footer stuck at the bottom of the visible screen, thats a good enough reason to change the height plenty of reasons to change the default root height tbh
14 replies
RReactiflux
Created by Telash on 5/27/2023 in #react-forum
Why I have to put content inside those divs in order to make them appear?
height: 100% means 100% of the parent container, and by default all elements, including body and html, will only have enough height to fit their contents. So, without any content, the div won't have any height, even though it has 100% of the parent, because there's no reason for the parent to have any height. If you add
html, body { height: 100%; }
html, body { height: 100%; }
you might find the behavior you're expecting
14 replies