samedi 2 septembre 2017

How do I float a header nav tag to the right?

Question

I've looked over the code very carefully and can't see a reason at all whatsoever why the header nav float isn't working in the stylesheet. I'm including all the html code and css code down below. I want to move my header nav to the right in my css code so that my links appear on the top right corner of my home page horizontally.

HTML

<!DOCTYPE>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Home</title>
  <body>
  <header>
    <div class="container">
      <div id="branding"><span class="highlight"><h1>James 
Velardi</span></h1>
        <nav>
          <ul>
            <li class="current"><a href="index.html">Home</a></li>
            <li><a href="about.html">About</a></li>
            <li><a href="services.html">Services</a></li>
          </ul>
        </nav>
      </div>
    </div>
  </header>
  <section id="home">
    <div class="container">
      <h1>Affordable Professional Web Design</h1>
      <p>laskfj;jla;jal;j;aljs;lasj;lasjl;ajsdlajsdl;fajsldfkjals;dfjalsdkfjalsf</p>
    </div>
  </section>

CSS

body {
    font: 15px/1.5 Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
}

/*Global*/
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

ul {
    margin: 0;
    padding: 0;
 }

/* header */

header {
    background: #35424a;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #000 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}


header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #e8491d;
    font-weight: bold;
}

header a:hover {
    color: #ccc;
    font-weight: bold;
}

/* Home Section */

#home {
    min-height: 400px;
    background: url("http://ift.tt/2vAV6ly") 0 400px;
    background-size: cover;
    text-align: center;
    color: #fff;
}

#home h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
}

#home p {
    font-size: 20px;

Aucun commentaire:

Enregistrer un commentaire