Answers for "how can i put my navbar in same line"

0

display li in navbar in the same line

.container {
  display:flex;
  justify-content:space-between;
  align-items:center;  
}
Posted by: Guest on October-04-2020
0

display li in navbar in the same line

body{
  background-color:#fff;
  color:#00f;
  font-family:"Raleway", Helvetica, sans-serif;
  margin:0;
}
.container {
  display:flex;
  justify-content:space-between;
  align-items:center; 
}
#logo{
  border:3px solid;
  padding:0 10px;
}
#navbar li{
  display:inline-block;
}
#navbar a{
  text-decoration:none;
  font-size:18px;
  padding-right:15px;
}
Posted by: Guest on October-04-2020

Code answers related to "how can i put my navbar in same line"

Browse Popular Code Answers by Language