inline-block

Inline block is fomat just like the inline element. From where it does't start any new line. Any how you can set new height and width of values. The element block will start from new line. It will occupy full width avaiblel.

inline block css

on Jun 04, 2022
Javascript is complex until you practice more than 20 projacts then you will find it easy

Add Comment

0

CSS inline-block

on Jun 04, 2022
span.a {
  display: inline; /* the default for span */
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid blue;
  background-color: yellow;
}

span.b {
  display: inline-block;
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid blue;
  background-color: yellow;
}

span.c {
  display: block;
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid blue;
  background-color: yellow;
}

Add Comment

0

inline-block

on Jun 04, 2022
An inline block is placed inline (ie. on the same line as adjacent content), but it behaves as a block. Its inline but we can add width height etc

Add Comment

0

All the possible answer are given above. You can give your suggestion also.

Html answers related to "inline-block"

View All Html queries

Html queries related to "inline-block"

Browse Other Code Languages

CodeProZone