Collapsible navigation menu using css grid Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Set cellpadding and cellspacing in CSS?How do I give text or an image a transparent background using CSS?Is there a CSS parent selector?When to use margin vs padding in CSSChange an HTML5 input's placeholder color with CSSHow can I transition height: 0; to height: auto; using CSS?How do CSS triangles work?How do I vertically center text with CSS?How to make Twitter Bootstrap menu dropdown on hover rather than clickIs it possible to apply CSS to half of a character?

How was Lagrange appointed professor of mathematics so early?

Coin Game with infinite paradox

Putting Ant-Man on house arrest

What's the difference between using dependency injection with a container and using a service locator?

Why doesn't the university give past final exams' answers?

What came first? Venom as the movie or as the song?

Married in secret, can marital status in passport be changed at a later date?

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'

Is "ein Herz wie das meine" an antiquated or colloquial use of the possesive pronoun?

Should man-made satellites feature an intelligent inverted "cow catcher"?

Can I ask an author to send me his ebook?

How to charge percentage of transaction cost?

Does the Pact of the Blade warlock feature allow me to customize the properties of the pact weapon I create?

Can a Wizard take the Magic Initiate feat and select spells from the Wizard list?

Has a Nobel Peace laureate ever been accused of war crimes?

Kepler's 3rd law: ratios don't fit data

Why aren't road bike wheels tiny?

Compiling and throwing simple dynamic exceptions at runtime for JVM

Why these surprising proportionalities of integrals involving odd zeta values?

tabularx column has extra padding at right?

Raising a bilingual kid. When should we introduce the majority language?

Is the Mordenkainen's Sword spell underpowered?

What could prevent concentrated local exploration?

Lights are flickering on and off after accidentally bumping into light switch



Collapsible navigation menu using css grid



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Set cellpadding and cellspacing in CSS?How do I give text or an image a transparent background using CSS?Is there a CSS parent selector?When to use margin vs padding in CSSChange an HTML5 input's placeholder color with CSSHow can I transition height: 0; to height: auto; using CSS?How do CSS triangles work?How do I vertically center text with CSS?How to make Twitter Bootstrap menu dropdown on hover rather than clickIs it possible to apply CSS to half of a character?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have created a navbar in Bootstrap-4 and now Im trying to recreate it using CSS Grid. I've managed to get the navbar to be responsive but I cannot figure out how to make it collapse on mobile devices.
Here is the pen with the navbar using CSS Grid: Navbar with CSS Grid
Here is the navbar using Bootstrap CDN: Navbar with Bootstrap . I've tried adding the navbar-expand-sm and navbar-toggler to the CSS Grid but it breaks the layout. Any help would be really appreciated.



 <section class="wrapper">
<!-- navigation -->
<nav class="main-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</section>


/* CSS Variables */
:root
--primary: #ddd;
--dark: #333;
--light: #fff;
--shadow: 0 1px 5px rgba(104, 104, 104, 0.8);

html
box-sizing: border-box;
font-family: Arial, Helvetica;
color: var(--dark);

body
background: #ccc;
margin: 1.9rem .5rem;
line-height: 1.4;

.wrapper
display: grid;
grid-gap: 5px;

/* Navigation */
.main-nav ul
display: grid;
grid-gap: 2px;
padding: 0;
list-style: none;
grid-template-columns: repeat(auto-fit, minmax(1em, 1fr));

.main-nav a
background: var(--primary);
display: block;
text-decoration: none;
padding: 1rem 0.4rem;
text-align: center;
color: var(--dark);
text-transform: uppercase;
font-size: 1rem;
font-weight: bold;
box-shadow: var(--shadow);

.main-nav a:hover
background: var(--dark);
color: var(--light);


/* Media queries */
@media (max-width:768px)
.main-nav a
font-weight: 500;
font-size: .9rem;



@media(max-width:734px)
.main-nav ul
grid-template-columns: 1fr;

.main-nav a
font-weight: 600;











share|improve this question






























    0















    I have created a navbar in Bootstrap-4 and now Im trying to recreate it using CSS Grid. I've managed to get the navbar to be responsive but I cannot figure out how to make it collapse on mobile devices.
    Here is the pen with the navbar using CSS Grid: Navbar with CSS Grid
    Here is the navbar using Bootstrap CDN: Navbar with Bootstrap . I've tried adding the navbar-expand-sm and navbar-toggler to the CSS Grid but it breaks the layout. Any help would be really appreciated.



     <section class="wrapper">
    <!-- navigation -->
    <nav class="main-nav">
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Products</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Gallery</a></li>
    <li><a href="#">Resources</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </section>


    /* CSS Variables */
    :root
    --primary: #ddd;
    --dark: #333;
    --light: #fff;
    --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);

    html
    box-sizing: border-box;
    font-family: Arial, Helvetica;
    color: var(--dark);

    body
    background: #ccc;
    margin: 1.9rem .5rem;
    line-height: 1.4;

    .wrapper
    display: grid;
    grid-gap: 5px;

    /* Navigation */
    .main-nav ul
    display: grid;
    grid-gap: 2px;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(1em, 1fr));

    .main-nav a
    background: var(--primary);
    display: block;
    text-decoration: none;
    padding: 1rem 0.4rem;
    text-align: center;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: var(--shadow);

    .main-nav a:hover
    background: var(--dark);
    color: var(--light);


    /* Media queries */
    @media (max-width:768px)
    .main-nav a
    font-weight: 500;
    font-size: .9rem;



    @media(max-width:734px)
    .main-nav ul
    grid-template-columns: 1fr;

    .main-nav a
    font-weight: 600;











    share|improve this question


























      0












      0








      0








      I have created a navbar in Bootstrap-4 and now Im trying to recreate it using CSS Grid. I've managed to get the navbar to be responsive but I cannot figure out how to make it collapse on mobile devices.
      Here is the pen with the navbar using CSS Grid: Navbar with CSS Grid
      Here is the navbar using Bootstrap CDN: Navbar with Bootstrap . I've tried adding the navbar-expand-sm and navbar-toggler to the CSS Grid but it breaks the layout. Any help would be really appreciated.



       <section class="wrapper">
      <!-- navigation -->
      <nav class="main-nav">
      <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Products</a></li>
      <li><a href="#">Services</a></li>
      <li><a href="#">Gallery</a></li>
      <li><a href="#">Resources</a></li>
      <li><a href="#">Contact</a></li>
      </ul>
      </nav>
      </section>


      /* CSS Variables */
      :root
      --primary: #ddd;
      --dark: #333;
      --light: #fff;
      --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);

      html
      box-sizing: border-box;
      font-family: Arial, Helvetica;
      color: var(--dark);

      body
      background: #ccc;
      margin: 1.9rem .5rem;
      line-height: 1.4;

      .wrapper
      display: grid;
      grid-gap: 5px;

      /* Navigation */
      .main-nav ul
      display: grid;
      grid-gap: 2px;
      padding: 0;
      list-style: none;
      grid-template-columns: repeat(auto-fit, minmax(1em, 1fr));

      .main-nav a
      background: var(--primary);
      display: block;
      text-decoration: none;
      padding: 1rem 0.4rem;
      text-align: center;
      color: var(--dark);
      text-transform: uppercase;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: var(--shadow);

      .main-nav a:hover
      background: var(--dark);
      color: var(--light);


      /* Media queries */
      @media (max-width:768px)
      .main-nav a
      font-weight: 500;
      font-size: .9rem;



      @media(max-width:734px)
      .main-nav ul
      grid-template-columns: 1fr;

      .main-nav a
      font-weight: 600;











      share|improve this question
















      I have created a navbar in Bootstrap-4 and now Im trying to recreate it using CSS Grid. I've managed to get the navbar to be responsive but I cannot figure out how to make it collapse on mobile devices.
      Here is the pen with the navbar using CSS Grid: Navbar with CSS Grid
      Here is the navbar using Bootstrap CDN: Navbar with Bootstrap . I've tried adding the navbar-expand-sm and navbar-toggler to the CSS Grid but it breaks the layout. Any help would be really appreciated.



       <section class="wrapper">
      <!-- navigation -->
      <nav class="main-nav">
      <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Products</a></li>
      <li><a href="#">Services</a></li>
      <li><a href="#">Gallery</a></li>
      <li><a href="#">Resources</a></li>
      <li><a href="#">Contact</a></li>
      </ul>
      </nav>
      </section>


      /* CSS Variables */
      :root
      --primary: #ddd;
      --dark: #333;
      --light: #fff;
      --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);

      html
      box-sizing: border-box;
      font-family: Arial, Helvetica;
      color: var(--dark);

      body
      background: #ccc;
      margin: 1.9rem .5rem;
      line-height: 1.4;

      .wrapper
      display: grid;
      grid-gap: 5px;

      /* Navigation */
      .main-nav ul
      display: grid;
      grid-gap: 2px;
      padding: 0;
      list-style: none;
      grid-template-columns: repeat(auto-fit, minmax(1em, 1fr));

      .main-nav a
      background: var(--primary);
      display: block;
      text-decoration: none;
      padding: 1rem 0.4rem;
      text-align: center;
      color: var(--dark);
      text-transform: uppercase;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: var(--shadow);

      .main-nav a:hover
      background: var(--dark);
      color: var(--light);


      /* Media queries */
      @media (max-width:768px)
      .main-nav a
      font-weight: 500;
      font-size: .9rem;



      @media(max-width:734px)
      .main-nav ul
      grid-template-columns: 1fr;

      .main-nav a
      font-weight: 600;








      css twitter-bootstrap navigation navbar css-grid






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 9 at 16:42







      JappperCat

















      asked Mar 9 at 2:43









      JappperCatJappperCat

      105




      105






















          0






          active

          oldest

          votes












          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%2f55073515%2fcollapsible-navigation-menu-using-css-grid%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f55073515%2fcollapsible-navigation-menu-using-css-grid%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

          1928 у кіно

          Захаров Федір Захарович

          Ель Греко