Applying the margin left and right auto tags centered each <div> tag I applied to. But I had to write it for each <div> tag.
That’s when I Discovered I could place <div> tags within other <div> tags. massively simplifying my design. I placed what I called a ‘wrapper’ div tag around my entire page. I specified the width as being 900px, which means the content of my page will not exceed 900px wider, if I remember the lectures correclty this maximum width should fit on most browsers. To center my ‘wrapper’ <div> I set its margin to auto which has centered my entire page, at a width of 900px.
Advertisement