“CSS blokowy wyściółki” Kod odpowiedzi

CSS blokowy wyściółki

/*
	Padding block is analogous to padding-top and padding-bottom
	in a horizontal writing mode. But it behaves like padding-left
	and padding-right in a vertical writing mode.
	Reference: https://codepen.io/wissamfawaz/pen/mdqgqgd
*/
.text {
  background: #fff;
  border: 3px dashed #ff7a18;
  /* 20px will be added to top and bottom if text is horizontal
  	 20px will be added to left and right if text is vertical
  */
  padding-block: 20px; 
}


Wissam

blok wyściółki

padding-block : 20px; /* it will only apply on top and bottom of the element*/
padding-block-start : 20px; /* it will only apply on top  of the element*/
padding-block-end : 20px; /* it will only apply on bottom of the element*/
Nazmul Hassan

Odpowiedzi podobne do “CSS blokowy wyściółki”

Pytania podobne do “CSS blokowy wyściółki”

Więcej pokrewnych odpowiedzi na “CSS blokowy wyściółki” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu