Web Tools Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu October 15, 2022 › #css #Element

Which value of the display property allow the next element to sit beside it?

We can use the inline or inline-block value for the display property to position div elements (block element) side by side.

For the <div> element, by default the value of the display property is block. So, as you know, a block element starts on a new line and take up the whole width.

Example : default div element. #
<div class="my-div">
   Div element 1
</div>
<div class="my-div">
  Div element 2
</div>
Try it Yourself »

Using the display:inline property. #

display:inline property is used to display an element as an inline element.

Example using display:inline property. #
<style>
  .my-div{
    display: inline;
  }
</style>

<div class="my-div">
   Div element 1
</div>
<div class="my-div">
  Div element 2
</div>
Try it Yourself »

Using the display:inline-block property. #

display:inline-block property is used to display an element as an inline-level block element.

Example using display:inline-block property. #
<style>
  .my-div{
    display: inline-block;
  }
</style>

<div class="my-div">
   Div element 1
</div>
<div class="my-div">
  Div element 2
</div>
Try it Yourself »
save
listen
AI Answer
Write Your Answer
loading
back
View All