Answers for "css list elements horizontally"

CSS
9

css list elements horizontally

ul li{
  	display: inline-block;
}
Posted by: Guest on May-02-2021
2

html list items horizontally

for example: 
(html)
<ul class="navbar-items">
	<li> <a href="#start">Start</a> </li>
    <li> <a href="#profile">Profile</a> </li>
    <li> <a href="#projects">Projects</a> </li>
    <li> <a href="#info">Info</a> </li>
</ul>

(css)
ul.navbar-items li /* Important part */
{
    display:inline;
}

ul.navbar-items /* Extra part, to style spaces between each item */
{
    min-width: 696px;
	padding-top: 20px;
}
Posted by: Guest on March-28-2020
0

li elements horizontally css

display: inline;
Posted by: Guest on January-16-2021

Code answers related to "css list elements horizontally"

Browse Popular Code Answers by Language