SóProvas


ID
2908372
Banca
FCC
Órgão
AFAP
Ano
2019
Provas
Disciplina
Programação
Assuntos

No CSS3 podem ser usadas diversas unidades de medida para definir o tamanho pelo qual os elementos são renderizados na página web quando aberta na janela do navegador. Algumas dessas unidades de medida são relativas e adequam o tamanho do elemento proporcionalmente ao tamanho da janela. Duas dessas unidades de medida são descritas abaixo, em inglês.


I. Relative to 1% of the width of the viewport (the browser window size).

II . Relative to 1% of the height of the viewport (the browser window size).


I e II referem-se, respectivamente, às unidades de medida

Alternativas
Comentários
  • em Relative to the font-size of the element (2em means 2 times the size of the current font)

    ex Relative to the x-height of the current font (rarely used)

    ch Relative to width of the "0" (zero)

    rem Relative to font-size of the root element

    vw Relative to 1% of the width of the viewport*

    vh Relative to 1% of the height of the viewport*

    vmin Relative to 1% of viewport's* smaller dimension

    vmax Relative to 1% of viewport's* larger dimension

    % Relative to the parent element

    fonte: https://www.w3schools.com/cssref/css_units.asp