Answers for "center li in ul vertically"

CSS
0

center li in ul css

.list-wrapper {
   text-align: -webkit-center;
}
.list-wrapper ul {
    display:block;
}
Posted by: Guest on December-18-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
-2

list elements vertically in html

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

Browse Popular Code Answers by Language