Posts by Ricardo Pedroni • 116 points
2 posts
-
0
votes1
answer110
viewsA: How do I direct the link to the anchor and close the modal at the same time?
If you are using directly the window.location (not always common in a React app), you can navigate to an anchor using directly window.location = '#some-hash' The modal can receive a…
-
0
votes2
answers40
viewsA: Help with alignment of items/images in a div
The easiest way is to use the flexbox or grid in the outermost div. You can scale the columns automatically too but as you explained the 33%, I ended up leaving. .container { display: flex;…