SóProvas


ID
1334758
Banca
FMP Concursos
Órgão
PROCEMPA
Ano
2012
Provas
Disciplina
Programação
Assuntos

Cascading Style Sheets (ou CSS) é uma linguagem de estilo utilizada para definir a apresentação de documentos escritos em uma linguagem de marcação, como HTML ou XML. Nela é possível estabelecer se a imagem de fundo ficará fixa ou se rolará ao usar a barra de rolagem, sendo definida na linguagem CSS pela propriedade background-

Alternativas
Comentários
  • background-attachment: scroll|fixed|local|initial|inherit;

    Value    Description
    scroll    The background scrolls along with the element. This is default
    fixed    The background is fixed with regard to the viewport
    local    The background scrolls along with the element's contents
    initial    Sets this property to its default value. Read about initial
    inherit    Inherits this property from its parent element. Read about inherit
     

    Fonte: https://www.w3schools.com/cssref/pr_background-attachment.asp