Nav bar is not lining up properly












0















So i'm working on a nav bar which should be aligned horizontally, but it won't. If i try to use



display: inline-block;


and then



float: left;


the navbar collides with the rest of my divisions



Here's my code:
http://jsfiddle.net/0p287vmb/










share|improve this question


















  • 1





    Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

    – Michael
    Nov 20 '18 at 8:16











  • just use display: initial on <a> also remove display: inline-block on hover

    – user123
    Nov 20 '18 at 8:17


















0















So i'm working on a nav bar which should be aligned horizontally, but it won't. If i try to use



display: inline-block;


and then



float: left;


the navbar collides with the rest of my divisions



Here's my code:
http://jsfiddle.net/0p287vmb/










share|improve this question


















  • 1





    Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

    – Michael
    Nov 20 '18 at 8:16











  • just use display: initial on <a> also remove display: inline-block on hover

    – user123
    Nov 20 '18 at 8:17
















0












0








0








So i'm working on a nav bar which should be aligned horizontally, but it won't. If i try to use



display: inline-block;


and then



float: left;


the navbar collides with the rest of my divisions



Here's my code:
http://jsfiddle.net/0p287vmb/










share|improve this question














So i'm working on a nav bar which should be aligned horizontally, but it won't. If i try to use



display: inline-block;


and then



float: left;


the navbar collides with the rest of my divisions



Here's my code:
http://jsfiddle.net/0p287vmb/







html css






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 8:10









Pepijn BruinaarsPepijn Bruinaars

31




31








  • 1





    Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

    – Michael
    Nov 20 '18 at 8:16











  • just use display: initial on <a> also remove display: inline-block on hover

    – user123
    Nov 20 '18 at 8:17
















  • 1





    Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

    – Michael
    Nov 20 '18 at 8:16











  • just use display: initial on <a> also remove display: inline-block on hover

    – user123
    Nov 20 '18 at 8:17










1




1





Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

– Michael
Nov 20 '18 at 8:16





Since you're using float: left; the nav aligns itself to the left edge of the parent, but so does the rest of the content, because the nav-bar is no longer part of the normal page flow, when using float. Do you want the nav-bar to be to the left of the header or underneath it, with the content being pushed to the center?

– Michael
Nov 20 '18 at 8:16













just use display: initial on <a> also remove display: inline-block on hover

– user123
Nov 20 '18 at 8:17







just use display: initial on <a> also remove display: inline-block on hover

– user123
Nov 20 '18 at 8:17














4 Answers
4






active

oldest

votes


















0














Try this:



nav
a {
font-family: Impact;
font-size: 15px;
color: black;
text-decoration: none;
display: inline-block;
width: 200px;
height: 50px;
text-align: center;
line-height: 50px;
margin: 0px;
padding: 0px;
}

nav
a:hover {
background-color: white;
display: inline-block;
}


I removed the commas because with commas it translates to nav & a. In your case removing it solves the problem also it overwrote the width of the nav that's why it doesn't seem to take up the whole width.






share|improve this answer































    0














    That's because you are overriding the width of the navbar in



    nav,
    a {
    ...
    width: 200px;
    ...
    }


    and the display block here:



    nav,
    a:hover {
    background-color: white;
    display: inline-block;
    }


    Just move the navbar styling after nav,a:hover ..., and remove nav from the same place because you are also ovveriding the background color of the nav.



    Also, on the last line it should be font-weight not text-weight.






       * {
    font-family: Verdana;
    font-size: 14px;
    margin: 0;
    }

    p {
    padding 20px;
    }

    #wrapper {
    width: 900px;
    background-color: #ff3333;
    margin: auto;
    }

    header {
    background-color: #00c9fd;
    width: 900px;
    }



    nav,
    a {
    font-family: Impact;
    font-size: 15px;
    color: black;
    text-decoration: none;
    display: inline-block;
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin: 0px;
    padding: 0px;
    float: left;
    }

    a:hover {
    background-color: white;
    display: inline-block;
    }

    nav {
    background-color: #cccccc;
    width: 900px;
    }


    #bigimage {
    width: 900px;
    }

    #bigimage,
    p {
    color: #00c9fd;
    background-color: #ffffff;
    font-size: 12px;
    }

    main {
    width: 900px;
    }

    article {
    background-color: #cccccc;
    width: 900px;
    }

    #contact {
    background-color: #cccccc;
    width: 900px;
    }

    footer {
    background-color: #00c9fd;
    width: 900px;
    }

    header,
    h1 {
    padding: 20px 0px 5px 0px;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-family: Impact;
    text-weight: normal;
    }

    	<div id="wrapper">
    <header>
    <h1>SUPERCOMPUTERS</h1>
    </header>
    <nav>
    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
    </nav>
    <div id="bigimage">
    <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
    <p>
    <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
    at, dignissim faucibus eros.
    </p>
    </div>
    <main>
    <article>hoi1</article>
    <article>hoi2</article>
    <article>hoi3</article>
    </main>
    <div id="contact">hoi4</div>
    <footer>hoi5</footer>
    </div>








    share|improve this answer































      0














      Your selector was wrong. You wrote nav, a which would mean to apply those styles to both nav and a elements. Infact you needed nav a which means to only apply those styles to a elements that are children of nav elements.



      nav a {
      font-family: Impact;
      font-size: 15px;
      color: black;
      text-decoration: none;
      display: inline-block;
      width: 200px;
      height: 50px;
      text-align: center;
      line-height: 50px;
      margin: 0px;
      padding: 0px;
      float: left;
      }





      share|improve this answer































        0














        You should remove the width from nav tag.






        * {
        font-family: Verdana;
        font-size: 14px;
        margin: 0;
        }

        p {
        padding 20px;
        }

        #wrapper {
        width: 900px;
        background-color: #ff3333;
        margin: auto;
        }

        header {
        background-color: #00c9fd;
        width: 900px;
        }

        nav {
        background-color: #cccccc;
        width: 900px;
        }

        a {
        font-family: Impact;
        font-size: 15px;
        color: black;
        text-decoration: none;
        text-align: center;
        line-height: 50px;
        margin: 0px;
        padding: 5px 10px;
        float: left;
        }

        nav,
        a:hover {
        background-color: white;
        display: inline-block;
        }

        #bigimage {
        width: 900px;
        }

        #bigimage,
        p {
        color: #00c9fd;
        background-color: #ffffff;
        font-size: 12px;
        }

        main {
        width: 900px;
        }

        article {
        background-color: #cccccc;
        width: 900px;
        }

        #contact {
        background-color: #cccccc;
        width: 900px;
        }

        footer {
        background-color: #00c9fd;
        width: 900px;
        }

        header,
        h1 {
        padding: 20px 0px 5px 0px;
        color: rgb(255, 255, 255);
        font-size: 30px;
        font-family: Impact;
        text-weight: normal;
        }

        <!DOCTYPE html>
        <html>

        <head>
        <link rel="stylesheet" type="text/css" href="style_new.css">
        </head>

        <body>
        <div id="wrapper">
        <header>
        <h1>SUPERCOMPUTERS</h1>
        </header>
        <nav>
        <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
        <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
        <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
        </nav>
        <div id="bigimage">
        <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
        <p>
        <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
        at, dignissim faucibus eros.
        </p>
        </div>
        <main>
        <article>hoi1</article>
        <article>hoi2</article>
        <article>hoi3</article>
        </main>
        <div id="contact">hoi4</div>
        <footer>hoi5</footer>
        </div>
        </body>

        </html>








        share|improve this answer

























          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388688%2fnav-bar-is-not-lining-up-properly%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Try this:



          nav
          a {
          font-family: Impact;
          font-size: 15px;
          color: black;
          text-decoration: none;
          display: inline-block;
          width: 200px;
          height: 50px;
          text-align: center;
          line-height: 50px;
          margin: 0px;
          padding: 0px;
          }

          nav
          a:hover {
          background-color: white;
          display: inline-block;
          }


          I removed the commas because with commas it translates to nav & a. In your case removing it solves the problem also it overwrote the width of the nav that's why it doesn't seem to take up the whole width.






          share|improve this answer




























            0














            Try this:



            nav
            a {
            font-family: Impact;
            font-size: 15px;
            color: black;
            text-decoration: none;
            display: inline-block;
            width: 200px;
            height: 50px;
            text-align: center;
            line-height: 50px;
            margin: 0px;
            padding: 0px;
            }

            nav
            a:hover {
            background-color: white;
            display: inline-block;
            }


            I removed the commas because with commas it translates to nav & a. In your case removing it solves the problem also it overwrote the width of the nav that's why it doesn't seem to take up the whole width.






            share|improve this answer


























              0












              0








              0







              Try this:



              nav
              a {
              font-family: Impact;
              font-size: 15px;
              color: black;
              text-decoration: none;
              display: inline-block;
              width: 200px;
              height: 50px;
              text-align: center;
              line-height: 50px;
              margin: 0px;
              padding: 0px;
              }

              nav
              a:hover {
              background-color: white;
              display: inline-block;
              }


              I removed the commas because with commas it translates to nav & a. In your case removing it solves the problem also it overwrote the width of the nav that's why it doesn't seem to take up the whole width.






              share|improve this answer













              Try this:



              nav
              a {
              font-family: Impact;
              font-size: 15px;
              color: black;
              text-decoration: none;
              display: inline-block;
              width: 200px;
              height: 50px;
              text-align: center;
              line-height: 50px;
              margin: 0px;
              padding: 0px;
              }

              nav
              a:hover {
              background-color: white;
              display: inline-block;
              }


              I removed the commas because with commas it translates to nav & a. In your case removing it solves the problem also it overwrote the width of the nav that's why it doesn't seem to take up the whole width.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 20 '18 at 8:22









              Jerico Lawrence RoqueJerico Lawrence Roque

              263




              263

























                  0














                  That's because you are overriding the width of the navbar in



                  nav,
                  a {
                  ...
                  width: 200px;
                  ...
                  }


                  and the display block here:



                  nav,
                  a:hover {
                  background-color: white;
                  display: inline-block;
                  }


                  Just move the navbar styling after nav,a:hover ..., and remove nav from the same place because you are also ovveriding the background color of the nav.



                  Also, on the last line it should be font-weight not text-weight.






                     * {
                  font-family: Verdana;
                  font-size: 14px;
                  margin: 0;
                  }

                  p {
                  padding 20px;
                  }

                  #wrapper {
                  width: 900px;
                  background-color: #ff3333;
                  margin: auto;
                  }

                  header {
                  background-color: #00c9fd;
                  width: 900px;
                  }



                  nav,
                  a {
                  font-family: Impact;
                  font-size: 15px;
                  color: black;
                  text-decoration: none;
                  display: inline-block;
                  width: 200px;
                  height: 50px;
                  text-align: center;
                  line-height: 50px;
                  margin: 0px;
                  padding: 0px;
                  float: left;
                  }

                  a:hover {
                  background-color: white;
                  display: inline-block;
                  }

                  nav {
                  background-color: #cccccc;
                  width: 900px;
                  }


                  #bigimage {
                  width: 900px;
                  }

                  #bigimage,
                  p {
                  color: #00c9fd;
                  background-color: #ffffff;
                  font-size: 12px;
                  }

                  main {
                  width: 900px;
                  }

                  article {
                  background-color: #cccccc;
                  width: 900px;
                  }

                  #contact {
                  background-color: #cccccc;
                  width: 900px;
                  }

                  footer {
                  background-color: #00c9fd;
                  width: 900px;
                  }

                  header,
                  h1 {
                  padding: 20px 0px 5px 0px;
                  color: rgb(255, 255, 255);
                  font-size: 30px;
                  font-family: Impact;
                  text-weight: normal;
                  }

                  	<div id="wrapper">
                  <header>
                  <h1>SUPERCOMPUTERS</h1>
                  </header>
                  <nav>
                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                  </nav>
                  <div id="bigimage">
                  <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                  <p>
                  <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                  at, dignissim faucibus eros.
                  </p>
                  </div>
                  <main>
                  <article>hoi1</article>
                  <article>hoi2</article>
                  <article>hoi3</article>
                  </main>
                  <div id="contact">hoi4</div>
                  <footer>hoi5</footer>
                  </div>








                  share|improve this answer




























                    0














                    That's because you are overriding the width of the navbar in



                    nav,
                    a {
                    ...
                    width: 200px;
                    ...
                    }


                    and the display block here:



                    nav,
                    a:hover {
                    background-color: white;
                    display: inline-block;
                    }


                    Just move the navbar styling after nav,a:hover ..., and remove nav from the same place because you are also ovveriding the background color of the nav.



                    Also, on the last line it should be font-weight not text-weight.






                       * {
                    font-family: Verdana;
                    font-size: 14px;
                    margin: 0;
                    }

                    p {
                    padding 20px;
                    }

                    #wrapper {
                    width: 900px;
                    background-color: #ff3333;
                    margin: auto;
                    }

                    header {
                    background-color: #00c9fd;
                    width: 900px;
                    }



                    nav,
                    a {
                    font-family: Impact;
                    font-size: 15px;
                    color: black;
                    text-decoration: none;
                    display: inline-block;
                    width: 200px;
                    height: 50px;
                    text-align: center;
                    line-height: 50px;
                    margin: 0px;
                    padding: 0px;
                    float: left;
                    }

                    a:hover {
                    background-color: white;
                    display: inline-block;
                    }

                    nav {
                    background-color: #cccccc;
                    width: 900px;
                    }


                    #bigimage {
                    width: 900px;
                    }

                    #bigimage,
                    p {
                    color: #00c9fd;
                    background-color: #ffffff;
                    font-size: 12px;
                    }

                    main {
                    width: 900px;
                    }

                    article {
                    background-color: #cccccc;
                    width: 900px;
                    }

                    #contact {
                    background-color: #cccccc;
                    width: 900px;
                    }

                    footer {
                    background-color: #00c9fd;
                    width: 900px;
                    }

                    header,
                    h1 {
                    padding: 20px 0px 5px 0px;
                    color: rgb(255, 255, 255);
                    font-size: 30px;
                    font-family: Impact;
                    text-weight: normal;
                    }

                    	<div id="wrapper">
                    <header>
                    <h1>SUPERCOMPUTERS</h1>
                    </header>
                    <nav>
                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                    </nav>
                    <div id="bigimage">
                    <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                    <p>
                    <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                    at, dignissim faucibus eros.
                    </p>
                    </div>
                    <main>
                    <article>hoi1</article>
                    <article>hoi2</article>
                    <article>hoi3</article>
                    </main>
                    <div id="contact">hoi4</div>
                    <footer>hoi5</footer>
                    </div>








                    share|improve this answer


























                      0












                      0








                      0







                      That's because you are overriding the width of the navbar in



                      nav,
                      a {
                      ...
                      width: 200px;
                      ...
                      }


                      and the display block here:



                      nav,
                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }


                      Just move the navbar styling after nav,a:hover ..., and remove nav from the same place because you are also ovveriding the background color of the nav.



                      Also, on the last line it should be font-weight not text-weight.






                         * {
                      font-family: Verdana;
                      font-size: 14px;
                      margin: 0;
                      }

                      p {
                      padding 20px;
                      }

                      #wrapper {
                      width: 900px;
                      background-color: #ff3333;
                      margin: auto;
                      }

                      header {
                      background-color: #00c9fd;
                      width: 900px;
                      }



                      nav,
                      a {
                      font-family: Impact;
                      font-size: 15px;
                      color: black;
                      text-decoration: none;
                      display: inline-block;
                      width: 200px;
                      height: 50px;
                      text-align: center;
                      line-height: 50px;
                      margin: 0px;
                      padding: 0px;
                      float: left;
                      }

                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }

                      nav {
                      background-color: #cccccc;
                      width: 900px;
                      }


                      #bigimage {
                      width: 900px;
                      }

                      #bigimage,
                      p {
                      color: #00c9fd;
                      background-color: #ffffff;
                      font-size: 12px;
                      }

                      main {
                      width: 900px;
                      }

                      article {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      #contact {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      footer {
                      background-color: #00c9fd;
                      width: 900px;
                      }

                      header,
                      h1 {
                      padding: 20px 0px 5px 0px;
                      color: rgb(255, 255, 255);
                      font-size: 30px;
                      font-family: Impact;
                      text-weight: normal;
                      }

                      	<div id="wrapper">
                      <header>
                      <h1>SUPERCOMPUTERS</h1>
                      </header>
                      <nav>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                      </nav>
                      <div id="bigimage">
                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                      <p>
                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                      at, dignissim faucibus eros.
                      </p>
                      </div>
                      <main>
                      <article>hoi1</article>
                      <article>hoi2</article>
                      <article>hoi3</article>
                      </main>
                      <div id="contact">hoi4</div>
                      <footer>hoi5</footer>
                      </div>








                      share|improve this answer













                      That's because you are overriding the width of the navbar in



                      nav,
                      a {
                      ...
                      width: 200px;
                      ...
                      }


                      and the display block here:



                      nav,
                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }


                      Just move the navbar styling after nav,a:hover ..., and remove nav from the same place because you are also ovveriding the background color of the nav.



                      Also, on the last line it should be font-weight not text-weight.






                         * {
                      font-family: Verdana;
                      font-size: 14px;
                      margin: 0;
                      }

                      p {
                      padding 20px;
                      }

                      #wrapper {
                      width: 900px;
                      background-color: #ff3333;
                      margin: auto;
                      }

                      header {
                      background-color: #00c9fd;
                      width: 900px;
                      }



                      nav,
                      a {
                      font-family: Impact;
                      font-size: 15px;
                      color: black;
                      text-decoration: none;
                      display: inline-block;
                      width: 200px;
                      height: 50px;
                      text-align: center;
                      line-height: 50px;
                      margin: 0px;
                      padding: 0px;
                      float: left;
                      }

                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }

                      nav {
                      background-color: #cccccc;
                      width: 900px;
                      }


                      #bigimage {
                      width: 900px;
                      }

                      #bigimage,
                      p {
                      color: #00c9fd;
                      background-color: #ffffff;
                      font-size: 12px;
                      }

                      main {
                      width: 900px;
                      }

                      article {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      #contact {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      footer {
                      background-color: #00c9fd;
                      width: 900px;
                      }

                      header,
                      h1 {
                      padding: 20px 0px 5px 0px;
                      color: rgb(255, 255, 255);
                      font-size: 30px;
                      font-family: Impact;
                      text-weight: normal;
                      }

                      	<div id="wrapper">
                      <header>
                      <h1>SUPERCOMPUTERS</h1>
                      </header>
                      <nav>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                      </nav>
                      <div id="bigimage">
                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                      <p>
                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                      at, dignissim faucibus eros.
                      </p>
                      </div>
                      <main>
                      <article>hoi1</article>
                      <article>hoi2</article>
                      <article>hoi3</article>
                      </main>
                      <div id="contact">hoi4</div>
                      <footer>hoi5</footer>
                      </div>








                         * {
                      font-family: Verdana;
                      font-size: 14px;
                      margin: 0;
                      }

                      p {
                      padding 20px;
                      }

                      #wrapper {
                      width: 900px;
                      background-color: #ff3333;
                      margin: auto;
                      }

                      header {
                      background-color: #00c9fd;
                      width: 900px;
                      }



                      nav,
                      a {
                      font-family: Impact;
                      font-size: 15px;
                      color: black;
                      text-decoration: none;
                      display: inline-block;
                      width: 200px;
                      height: 50px;
                      text-align: center;
                      line-height: 50px;
                      margin: 0px;
                      padding: 0px;
                      float: left;
                      }

                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }

                      nav {
                      background-color: #cccccc;
                      width: 900px;
                      }


                      #bigimage {
                      width: 900px;
                      }

                      #bigimage,
                      p {
                      color: #00c9fd;
                      background-color: #ffffff;
                      font-size: 12px;
                      }

                      main {
                      width: 900px;
                      }

                      article {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      #contact {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      footer {
                      background-color: #00c9fd;
                      width: 900px;
                      }

                      header,
                      h1 {
                      padding: 20px 0px 5px 0px;
                      color: rgb(255, 255, 255);
                      font-size: 30px;
                      font-family: Impact;
                      text-weight: normal;
                      }

                      	<div id="wrapper">
                      <header>
                      <h1>SUPERCOMPUTERS</h1>
                      </header>
                      <nav>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                      </nav>
                      <div id="bigimage">
                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                      <p>
                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                      at, dignissim faucibus eros.
                      </p>
                      </div>
                      <main>
                      <article>hoi1</article>
                      <article>hoi2</article>
                      <article>hoi3</article>
                      </main>
                      <div id="contact">hoi4</div>
                      <footer>hoi5</footer>
                      </div>





                         * {
                      font-family: Verdana;
                      font-size: 14px;
                      margin: 0;
                      }

                      p {
                      padding 20px;
                      }

                      #wrapper {
                      width: 900px;
                      background-color: #ff3333;
                      margin: auto;
                      }

                      header {
                      background-color: #00c9fd;
                      width: 900px;
                      }



                      nav,
                      a {
                      font-family: Impact;
                      font-size: 15px;
                      color: black;
                      text-decoration: none;
                      display: inline-block;
                      width: 200px;
                      height: 50px;
                      text-align: center;
                      line-height: 50px;
                      margin: 0px;
                      padding: 0px;
                      float: left;
                      }

                      a:hover {
                      background-color: white;
                      display: inline-block;
                      }

                      nav {
                      background-color: #cccccc;
                      width: 900px;
                      }


                      #bigimage {
                      width: 900px;
                      }

                      #bigimage,
                      p {
                      color: #00c9fd;
                      background-color: #ffffff;
                      font-size: 12px;
                      }

                      main {
                      width: 900px;
                      }

                      article {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      #contact {
                      background-color: #cccccc;
                      width: 900px;
                      }

                      footer {
                      background-color: #00c9fd;
                      width: 900px;
                      }

                      header,
                      h1 {
                      padding: 20px 0px 5px 0px;
                      color: rgb(255, 255, 255);
                      font-size: 30px;
                      font-family: Impact;
                      text-weight: normal;
                      }

                      	<div id="wrapper">
                      <header>
                      <h1>SUPERCOMPUTERS</h1>
                      </header>
                      <nav>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                      </nav>
                      <div id="bigimage">
                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                      <p>
                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                      at, dignissim faucibus eros.
                      </p>
                      </div>
                      <main>
                      <article>hoi1</article>
                      <article>hoi2</article>
                      <article>hoi3</article>
                      </main>
                      <div id="contact">hoi4</div>
                      <footer>hoi5</footer>
                      </div>






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 20 '18 at 8:20









                      IuliusIulius

                      553312




                      553312























                          0














                          Your selector was wrong. You wrote nav, a which would mean to apply those styles to both nav and a elements. Infact you needed nav a which means to only apply those styles to a elements that are children of nav elements.



                          nav a {
                          font-family: Impact;
                          font-size: 15px;
                          color: black;
                          text-decoration: none;
                          display: inline-block;
                          width: 200px;
                          height: 50px;
                          text-align: center;
                          line-height: 50px;
                          margin: 0px;
                          padding: 0px;
                          float: left;
                          }





                          share|improve this answer




























                            0














                            Your selector was wrong. You wrote nav, a which would mean to apply those styles to both nav and a elements. Infact you needed nav a which means to only apply those styles to a elements that are children of nav elements.



                            nav a {
                            font-family: Impact;
                            font-size: 15px;
                            color: black;
                            text-decoration: none;
                            display: inline-block;
                            width: 200px;
                            height: 50px;
                            text-align: center;
                            line-height: 50px;
                            margin: 0px;
                            padding: 0px;
                            float: left;
                            }





                            share|improve this answer


























                              0












                              0








                              0







                              Your selector was wrong. You wrote nav, a which would mean to apply those styles to both nav and a elements. Infact you needed nav a which means to only apply those styles to a elements that are children of nav elements.



                              nav a {
                              font-family: Impact;
                              font-size: 15px;
                              color: black;
                              text-decoration: none;
                              display: inline-block;
                              width: 200px;
                              height: 50px;
                              text-align: center;
                              line-height: 50px;
                              margin: 0px;
                              padding: 0px;
                              float: left;
                              }





                              share|improve this answer













                              Your selector was wrong. You wrote nav, a which would mean to apply those styles to both nav and a elements. Infact you needed nav a which means to only apply those styles to a elements that are children of nav elements.



                              nav a {
                              font-family: Impact;
                              font-size: 15px;
                              color: black;
                              text-decoration: none;
                              display: inline-block;
                              width: 200px;
                              height: 50px;
                              text-align: center;
                              line-height: 50px;
                              margin: 0px;
                              padding: 0px;
                              float: left;
                              }






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Nov 20 '18 at 8:21









                              Sam WalpoleSam Walpole

                              788




                              788























                                  0














                                  You should remove the width from nav tag.






                                  * {
                                  font-family: Verdana;
                                  font-size: 14px;
                                  margin: 0;
                                  }

                                  p {
                                  padding 20px;
                                  }

                                  #wrapper {
                                  width: 900px;
                                  background-color: #ff3333;
                                  margin: auto;
                                  }

                                  header {
                                  background-color: #00c9fd;
                                  width: 900px;
                                  }

                                  nav {
                                  background-color: #cccccc;
                                  width: 900px;
                                  }

                                  a {
                                  font-family: Impact;
                                  font-size: 15px;
                                  color: black;
                                  text-decoration: none;
                                  text-align: center;
                                  line-height: 50px;
                                  margin: 0px;
                                  padding: 5px 10px;
                                  float: left;
                                  }

                                  nav,
                                  a:hover {
                                  background-color: white;
                                  display: inline-block;
                                  }

                                  #bigimage {
                                  width: 900px;
                                  }

                                  #bigimage,
                                  p {
                                  color: #00c9fd;
                                  background-color: #ffffff;
                                  font-size: 12px;
                                  }

                                  main {
                                  width: 900px;
                                  }

                                  article {
                                  background-color: #cccccc;
                                  width: 900px;
                                  }

                                  #contact {
                                  background-color: #cccccc;
                                  width: 900px;
                                  }

                                  footer {
                                  background-color: #00c9fd;
                                  width: 900px;
                                  }

                                  header,
                                  h1 {
                                  padding: 20px 0px 5px 0px;
                                  color: rgb(255, 255, 255);
                                  font-size: 30px;
                                  font-family: Impact;
                                  text-weight: normal;
                                  }

                                  <!DOCTYPE html>
                                  <html>

                                  <head>
                                  <link rel="stylesheet" type="text/css" href="style_new.css">
                                  </head>

                                  <body>
                                  <div id="wrapper">
                                  <header>
                                  <h1>SUPERCOMPUTERS</h1>
                                  </header>
                                  <nav>
                                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                  <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                  </nav>
                                  <div id="bigimage">
                                  <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                  <p>
                                  <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                  at, dignissim faucibus eros.
                                  </p>
                                  </div>
                                  <main>
                                  <article>hoi1</article>
                                  <article>hoi2</article>
                                  <article>hoi3</article>
                                  </main>
                                  <div id="contact">hoi4</div>
                                  <footer>hoi5</footer>
                                  </div>
                                  </body>

                                  </html>








                                  share|improve this answer






























                                    0














                                    You should remove the width from nav tag.






                                    * {
                                    font-family: Verdana;
                                    font-size: 14px;
                                    margin: 0;
                                    }

                                    p {
                                    padding 20px;
                                    }

                                    #wrapper {
                                    width: 900px;
                                    background-color: #ff3333;
                                    margin: auto;
                                    }

                                    header {
                                    background-color: #00c9fd;
                                    width: 900px;
                                    }

                                    nav {
                                    background-color: #cccccc;
                                    width: 900px;
                                    }

                                    a {
                                    font-family: Impact;
                                    font-size: 15px;
                                    color: black;
                                    text-decoration: none;
                                    text-align: center;
                                    line-height: 50px;
                                    margin: 0px;
                                    padding: 5px 10px;
                                    float: left;
                                    }

                                    nav,
                                    a:hover {
                                    background-color: white;
                                    display: inline-block;
                                    }

                                    #bigimage {
                                    width: 900px;
                                    }

                                    #bigimage,
                                    p {
                                    color: #00c9fd;
                                    background-color: #ffffff;
                                    font-size: 12px;
                                    }

                                    main {
                                    width: 900px;
                                    }

                                    article {
                                    background-color: #cccccc;
                                    width: 900px;
                                    }

                                    #contact {
                                    background-color: #cccccc;
                                    width: 900px;
                                    }

                                    footer {
                                    background-color: #00c9fd;
                                    width: 900px;
                                    }

                                    header,
                                    h1 {
                                    padding: 20px 0px 5px 0px;
                                    color: rgb(255, 255, 255);
                                    font-size: 30px;
                                    font-family: Impact;
                                    text-weight: normal;
                                    }

                                    <!DOCTYPE html>
                                    <html>

                                    <head>
                                    <link rel="stylesheet" type="text/css" href="style_new.css">
                                    </head>

                                    <body>
                                    <div id="wrapper">
                                    <header>
                                    <h1>SUPERCOMPUTERS</h1>
                                    </header>
                                    <nav>
                                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                    <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                    </nav>
                                    <div id="bigimage">
                                    <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                    <p>
                                    <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                    at, dignissim faucibus eros.
                                    </p>
                                    </div>
                                    <main>
                                    <article>hoi1</article>
                                    <article>hoi2</article>
                                    <article>hoi3</article>
                                    </main>
                                    <div id="contact">hoi4</div>
                                    <footer>hoi5</footer>
                                    </div>
                                    </body>

                                    </html>








                                    share|improve this answer




























                                      0












                                      0








                                      0







                                      You should remove the width from nav tag.






                                      * {
                                      font-family: Verdana;
                                      font-size: 14px;
                                      margin: 0;
                                      }

                                      p {
                                      padding 20px;
                                      }

                                      #wrapper {
                                      width: 900px;
                                      background-color: #ff3333;
                                      margin: auto;
                                      }

                                      header {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      nav {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      a {
                                      font-family: Impact;
                                      font-size: 15px;
                                      color: black;
                                      text-decoration: none;
                                      text-align: center;
                                      line-height: 50px;
                                      margin: 0px;
                                      padding: 5px 10px;
                                      float: left;
                                      }

                                      nav,
                                      a:hover {
                                      background-color: white;
                                      display: inline-block;
                                      }

                                      #bigimage {
                                      width: 900px;
                                      }

                                      #bigimage,
                                      p {
                                      color: #00c9fd;
                                      background-color: #ffffff;
                                      font-size: 12px;
                                      }

                                      main {
                                      width: 900px;
                                      }

                                      article {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      #contact {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      footer {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      header,
                                      h1 {
                                      padding: 20px 0px 5px 0px;
                                      color: rgb(255, 255, 255);
                                      font-size: 30px;
                                      font-family: Impact;
                                      text-weight: normal;
                                      }

                                      <!DOCTYPE html>
                                      <html>

                                      <head>
                                      <link rel="stylesheet" type="text/css" href="style_new.css">
                                      </head>

                                      <body>
                                      <div id="wrapper">
                                      <header>
                                      <h1>SUPERCOMPUTERS</h1>
                                      </header>
                                      <nav>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                      </nav>
                                      <div id="bigimage">
                                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                      <p>
                                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                      at, dignissim faucibus eros.
                                      </p>
                                      </div>
                                      <main>
                                      <article>hoi1</article>
                                      <article>hoi2</article>
                                      <article>hoi3</article>
                                      </main>
                                      <div id="contact">hoi4</div>
                                      <footer>hoi5</footer>
                                      </div>
                                      </body>

                                      </html>








                                      share|improve this answer















                                      You should remove the width from nav tag.






                                      * {
                                      font-family: Verdana;
                                      font-size: 14px;
                                      margin: 0;
                                      }

                                      p {
                                      padding 20px;
                                      }

                                      #wrapper {
                                      width: 900px;
                                      background-color: #ff3333;
                                      margin: auto;
                                      }

                                      header {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      nav {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      a {
                                      font-family: Impact;
                                      font-size: 15px;
                                      color: black;
                                      text-decoration: none;
                                      text-align: center;
                                      line-height: 50px;
                                      margin: 0px;
                                      padding: 5px 10px;
                                      float: left;
                                      }

                                      nav,
                                      a:hover {
                                      background-color: white;
                                      display: inline-block;
                                      }

                                      #bigimage {
                                      width: 900px;
                                      }

                                      #bigimage,
                                      p {
                                      color: #00c9fd;
                                      background-color: #ffffff;
                                      font-size: 12px;
                                      }

                                      main {
                                      width: 900px;
                                      }

                                      article {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      #contact {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      footer {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      header,
                                      h1 {
                                      padding: 20px 0px 5px 0px;
                                      color: rgb(255, 255, 255);
                                      font-size: 30px;
                                      font-family: Impact;
                                      text-weight: normal;
                                      }

                                      <!DOCTYPE html>
                                      <html>

                                      <head>
                                      <link rel="stylesheet" type="text/css" href="style_new.css">
                                      </head>

                                      <body>
                                      <div id="wrapper">
                                      <header>
                                      <h1>SUPERCOMPUTERS</h1>
                                      </header>
                                      <nav>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                      </nav>
                                      <div id="bigimage">
                                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                      <p>
                                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                      at, dignissim faucibus eros.
                                      </p>
                                      </div>
                                      <main>
                                      <article>hoi1</article>
                                      <article>hoi2</article>
                                      <article>hoi3</article>
                                      </main>
                                      <div id="contact">hoi4</div>
                                      <footer>hoi5</footer>
                                      </div>
                                      </body>

                                      </html>








                                      * {
                                      font-family: Verdana;
                                      font-size: 14px;
                                      margin: 0;
                                      }

                                      p {
                                      padding 20px;
                                      }

                                      #wrapper {
                                      width: 900px;
                                      background-color: #ff3333;
                                      margin: auto;
                                      }

                                      header {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      nav {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      a {
                                      font-family: Impact;
                                      font-size: 15px;
                                      color: black;
                                      text-decoration: none;
                                      text-align: center;
                                      line-height: 50px;
                                      margin: 0px;
                                      padding: 5px 10px;
                                      float: left;
                                      }

                                      nav,
                                      a:hover {
                                      background-color: white;
                                      display: inline-block;
                                      }

                                      #bigimage {
                                      width: 900px;
                                      }

                                      #bigimage,
                                      p {
                                      color: #00c9fd;
                                      background-color: #ffffff;
                                      font-size: 12px;
                                      }

                                      main {
                                      width: 900px;
                                      }

                                      article {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      #contact {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      footer {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      header,
                                      h1 {
                                      padding: 20px 0px 5px 0px;
                                      color: rgb(255, 255, 255);
                                      font-size: 30px;
                                      font-family: Impact;
                                      text-weight: normal;
                                      }

                                      <!DOCTYPE html>
                                      <html>

                                      <head>
                                      <link rel="stylesheet" type="text/css" href="style_new.css">
                                      </head>

                                      <body>
                                      <div id="wrapper">
                                      <header>
                                      <h1>SUPERCOMPUTERS</h1>
                                      </header>
                                      <nav>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                      </nav>
                                      <div id="bigimage">
                                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                      <p>
                                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                      at, dignissim faucibus eros.
                                      </p>
                                      </div>
                                      <main>
                                      <article>hoi1</article>
                                      <article>hoi2</article>
                                      <article>hoi3</article>
                                      </main>
                                      <div id="contact">hoi4</div>
                                      <footer>hoi5</footer>
                                      </div>
                                      </body>

                                      </html>





                                      * {
                                      font-family: Verdana;
                                      font-size: 14px;
                                      margin: 0;
                                      }

                                      p {
                                      padding 20px;
                                      }

                                      #wrapper {
                                      width: 900px;
                                      background-color: #ff3333;
                                      margin: auto;
                                      }

                                      header {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      nav {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      a {
                                      font-family: Impact;
                                      font-size: 15px;
                                      color: black;
                                      text-decoration: none;
                                      text-align: center;
                                      line-height: 50px;
                                      margin: 0px;
                                      padding: 5px 10px;
                                      float: left;
                                      }

                                      nav,
                                      a:hover {
                                      background-color: white;
                                      display: inline-block;
                                      }

                                      #bigimage {
                                      width: 900px;
                                      }

                                      #bigimage,
                                      p {
                                      color: #00c9fd;
                                      background-color: #ffffff;
                                      font-size: 12px;
                                      }

                                      main {
                                      width: 900px;
                                      }

                                      article {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      #contact {
                                      background-color: #cccccc;
                                      width: 900px;
                                      }

                                      footer {
                                      background-color: #00c9fd;
                                      width: 900px;
                                      }

                                      header,
                                      h1 {
                                      padding: 20px 0px 5px 0px;
                                      color: rgb(255, 255, 255);
                                      font-size: 30px;
                                      font-family: Impact;
                                      text-weight: normal;
                                      }

                                      <!DOCTYPE html>
                                      <html>

                                      <head>
                                      <link rel="stylesheet" type="text/css" href="style_new.css">
                                      </head>

                                      <body>
                                      <div id="wrapper">
                                      <header>
                                      <h1>SUPERCOMPUTERS</h1>
                                      </header>
                                      <nav>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Home</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Meer informatie</a>
                                      <a href="http://www.pbruinaars.ictlaurens.nl/opdrachtje/new.html">Tijdlijn</a>
                                      </nav>
                                      <div id="bigimage">
                                      <img src="images/titanadfacomputer.jpg" alt="Titan 2 Supercomputer" width="900">
                                      <p>
                                      <b>Lorem</b> <br> ipsum dolor sit amet, consectetur adipiscing elit. Aliquam mollis turpis sit amet blandit malesuada. Praesent at lacus rutrum, auctor justo sed, consectetur massa. Cras gravida vehicula vulputate. Ut magna odio, mollis non dolor
                                      at, dignissim faucibus eros.
                                      </p>
                                      </div>
                                      <main>
                                      <article>hoi1</article>
                                      <article>hoi2</article>
                                      <article>hoi3</article>
                                      </main>
                                      <div id="contact">hoi4</div>
                                      <footer>hoi5</footer>
                                      </div>
                                      </body>

                                      </html>






                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited Nov 20 '18 at 8:32

























                                      answered Nov 20 '18 at 8:16









                                      Ismail RubadIsmail Rubad

                                      7591621




                                      7591621






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Stack Overflow!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388688%2fnav-bar-is-not-lining-up-properly%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          MongoDB - Not Authorized To Execute Command

                                          Npm cannot find a required file even through it is in the searched directory

                                          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith