Answers for "list elements vertically in html"

CSS
2

how to make a list vertical in css

li {
   display: inline-block;
}
Posted by: Guest on July-09-2020
8

list elements vertically in html

.list {
  background-color: #eee; /* Grey background color */
  color: black; /* Black text color */
  display: block; /* Make the links appear below each other */
  padding: 12px; /* Add some padding */
  text-decoration: none; /* Remove underline from links */
}
Posted by: Guest on August-17-2021
0

how to make a list vertical in css

.list-item
{
    float: left;
    clear: left;
}
Posted by: Guest on July-09-2020
-2

list elements vertically in html

display: inline-block
Posted by: Guest on September-04-2020

Code answers related to "list elements vertically in html"

Browse Popular Code Answers by Language