SóProvas


ID
276715
Banca
ESAF
Órgão
CVM
Ano
2010
Provas
Disciplina
Programação
Assuntos

Com relação a fundos de página Web em CSS

Alternativas
Comentários
  • Background-color pode ter os seguintes parametros:

    - fixed
    - scroll
    - inehrit
  • Lista dos possíveis valores para background-attachment:
    Property Values

    Value Description
    scroll The background image scrolls with the rest of the page. This is default
    fixed The background image is fixed
    inherit Specifies that the setting of the background-attachment property should be inherited from the parent element

    Fonte: http://www.w3schools.com/cssref/pr_background-attachment.asp
  • Essas são as propriedades background:
    background-color:
    código hexadecimal: #FFFFFF
    código rgb: rgb(255,235,0)
    nome da cor: red, blue, green...etc
    transparente: transparent
    background-image:
    URL: url(caminho/imagem.gif)
    background-repeat:
    não repete: no-repeat
    repete vertical e horizontal: repeat
    repete vertical: repeat-y
    repete horizontal: repeat-x
    background-attachment:
    imagem fixa na tela: fixed
    imagem "rola" com a tela: scroll
    background-position:
    x-pos y-pos
    x-% y-%
    top left
    top center
    top right
    center left
    center center
    center right
    bottom left
    bottom center
    bottom right
  • Para uma boa explicação acesse: http://pt-br.html.net/tutorials/css/lesson3.php
  • d-

    The background-attachment property sets whether a background image scrolls with the rest of the page, or is fixed.

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