[CSS] [proprietà] background-repeat

background-repeat (proprietà CSS) stabilisce come e se l’immagine di sfondo dell’elemento HTML (inserita con la proprietà background-image) debba essere affiancata e ripetersi.

Sintassi

<style>
[selettore] {
    background-repeat: repeat | no-repeat
                       repeat-y | repeat-x
}
</style>
valore descrizione
XXX XXX

Esempi

La proprietà può avere i seguenti valori: repeat, no-repeat, repeat-y (si ripete nell’asse y, quindi verticalmente), repeat-x (si ripete nell’asse x, quindi orizzontalmente).

<style>
p {
    background-image: url("https://goo.gl/lyQAkk");
    background-repeat: no-repeat;
}
</style>
<p>Testo con sfondo<br>Testo con sfondo</p>

Testo con sfondo
Testo con sfondo

Contenuti correlati

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

Fonti esterne

css, proprietà css

Related Articles

0 Comment

Rispondi