[CSS] [proprietà] margin-bottom

margin-bottom (proprietà CSS) imposta la larghezza del margine inferiore dell’elemento HTML.

Sintassi

[selettore] {
  margin-bottom: [valore];
}
valore descrizione
XXX XXX

Esempi

<style>
.margin_bottom {
  margin-bottom:100px;
  border: 3px solid yellow;
}
</style>
<p class="margin_bottom">Test</p>

Test

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

css, proprietà css

Related Articles

0 Comment