Answers for "css two elements next to each other"

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

how to put different p elements next to each

<p class='Same'>Good</p>
<p class='Same'>Bad</p>
Posted by: Guest on September-23-2020
-1

how to put different p elements next to each

.Same{
  display:inline-block;
}
Posted by: Guest on September-23-2020

Code answers related to "css two elements next to each other"

Browse Popular Code Answers by Language