Skip to content

Instantly share code, notes, and snippets.

@teffcode
Created November 27, 2020 16:22
Show Gist options
  • Save teffcode/53be48fbd537bc5e95f0bd5f177d7c05 to your computer and use it in GitHub Desktop.
Save teffcode/53be48fbd537bc5e95f0bd5f177d7c05 to your computer and use it in GitHub Desktop.

馃憢馃徏 Welcome 馃憢馃徏

Quiz banner

Instagram | Twitter | LinkedIn


Choose your language 馃憛



English version 馃殌


If we want lists to have a font-size of 12px, What value in rem should we write ?


Click here to see the correct answer and explanation 馃憖
Correct Answer Explanation
C 1rem equals the font size of the html element (which for most browsers has a default value of 16px). This means, if 100% = 16px, then 75% = 12px because (100% * 12) / 16 = 75% and it's equivalent to 0.75rem.

Explicaci贸n basada en 馃憠馃徏 Rem in CSS: Understanding and Using rem Units | Sitepoint

Code:

HTML:

<h2>My List</h2>
<ul>
  <li>Read an article</li>
  <li>Call to my parents</li>
  <li>Try not to fall asleep</li>
</ul>

CSS:

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Sansita+Swashed:wght@600&display=swap');

html {
  font-size: 100%;
}

h2 {
  font-family: 'Sansita Swashed', cursive;
}

ul {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
}


Spanish version 馃殌


Si queremos que nuestra lista tenga un font-size de 12px, 驴Qu茅 valor en rem deber铆amos escribir?


Haz click aqu铆 para ver la respuesta correcta y su explicaci贸n 馃憖
Respuesta correcta Explicaci贸n
C 1rem es igual al tama帽o de fuente del elemento html (que para la mayor铆a de los navegadores tiene un valor predeterminado de 16px). Esto quiere decir que si 100% = 16px, entonces 75% = 12px porque (100% * 12) / 16 = 75% que equivaldr铆a a 0.75rem

Explicaci贸n basada en 馃憠馃徏 Rem in CSS: Understanding and Using rem Units | Sitepoint

C贸digo completo:

HTML:

<h2>My List</h2>
<ul>
  <li>Read an article</li>
  <li>Call to my parents</li>
  <li>Try not to fall asleep</li>
</ul>

CSS:

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Sansita+Swashed:wght@600&display=swap');

html {
  font-size: 100%;
}

h2 {
  font-family: 'Sansita Swashed', cursive;
}

ul {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
}


@cquiladiaz
Copy link

C, ya que el font-size por defecto es de 16px. Y el 75% de 16 es 12 馃挌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment