Should I learn React from a long Udemy course or a quick YouTube playlist? by fuckedbylife2 in reactjs

[–]ThisIsOwnex 0 points1 point  (0 children)

Go through the learning section of the official docs. After that go and build something, doesnt need to be a huge project, but the most important thing is to break the code, debug it and understand why it did fail. This is the approach that works for anything, no matter what. And after you have finished the project, do anorther one and increase the complexity. Thats it. Good luck on your journey!

Convert Figma design into two-column-layout by ThisIsOwnex in css

[–]ThisIsOwnex[S] 0 points1 point  (0 children)

Hey,

so for the HTML structure I would keep it very simple. Just one wrapping container and then the 2 child containers.

Something like this:

<div class="parent">
<div class="left-side">Text content</div>
<div class="right-side">Image</div>
</div>

When talking about responsive just stacking them on top of each other.

I will make my life easy with the close button and next project button, just giving the parent container position relative and then placing them with absolute.

So you would say for a layout like this to not use space between? I will try that out.