“CSS Block Inline” Respostas de código

CSS Block Inline

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;
}
naly moslih

Block inline

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
Crowded Copperhead

Respostas semelhantes a “CSS Block Inline”

Perguntas semelhantes a “CSS Block Inline”

Procure respostas de código populares por idioma

Procurar outros idiomas de código