-2
How could I add more dropdowns to my code’s navbar? I tried to copy the button
and paste right down into my code, but the navigation bar is replicated below, I just want more options next to the item "File".
Follows the code:
</head>
<body>
<div class="navbar">
<div class="dropdown">
<button class="dropbtn">Arquivo
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Novo</a>
<a href="#">Abrir</a>
<a href="#">Salvar</a>
<div class="navbar">
<div class="dropdown">
<button class="dropbtn">Arquivo
<i class="fa fa-caret-down"></i>
</button>
</div>
</div>
</div>
<textarea rows="35" cols="142">
</textarea>
</body>
</html>
Which version of Bootstrap you are using??
– hugocsl