Tag Archives: center

Introduction to Flexbox

If you have a lot of divs or paragraphs before you define flexbox it might look like this: Adding the following to the container changes the above to this: .container { display: flex; } Everything is now side by side … Continue reading

Posted in Web Developer Course | Tagged , , , , | Leave a comment

Developer Skill #1: Googling and Reading Documentation

Developers never know everything, they just know when something exists, and also know how to look it up. For example, say you wanted to find out how to search for the cursor that changes to a hand when you hover … Continue reading

Posted in Web Developer Course | Tagged , , , , , | Leave a comment

Centering our Page

Steps to center a page: have or make a container and give it a width. HTML CSS <div class=”container”> .container { width: 800px;} </div> set margin-left and right to auto, so that the width is automatically placed and there will … Continue reading

Posted in Web Developer Course | Tagged , , , | Leave a comment