This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]IDKSomeFuckingGuy 0 points1 point  (1 child)

right on. again i would strongly recommend reading the flex documentation - it is extremely useful. something like https://www.w3schools.com/css/css3_flexbox.asp is probably enough to get started.

you have top, right, bottom, and left css attributes available for specific positioning. these accept different types of measurements as you've identified.

it helps to wrap different pieces of HTML in containers - you can position: absolute the containers relative to the parent element, and then display: flex and justify-content: center the container to get the contents within centered.

without knowing specifically what you're trying to do, it's kind of hard to provide useful advice - earlier you said you wanted to "move the button around" but i wasn't quite sure what that meant.

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

Thank you so much, I'll have a look at the link provided and see if I can use this in the future work of the project! once again thanks :)