Answers for "html 2 items next to each other"

CSS
11

css list items next to each other

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

multiple divs next to each other

.container {
  display: flex;
}

.item {
  background: #ce8888;
  flex-basis: 100px;
  height: 100px;
  margin: 5px;
}
Posted by: Guest on September-17-2021
0

css list items next to each other

ul li{
  	display: inline-table;
}
Posted by: Guest on August-04-2020

Code answers related to "html 2 items next to each other"

Browse Popular Code Answers by Language