mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-05 22:37:42 +02:00
fixing selector(color) name that was improperly translated
This commit is contained in:
@@ -159,11 +159,11 @@ seletor {
|
|||||||
color: # FF66EE; /* Formato hexadecimal longo */
|
color: # FF66EE; /* Formato hexadecimal longo */
|
||||||
color: tomato; /* Uma cor nomeada */
|
color: tomato; /* Uma cor nomeada */
|
||||||
color: rgb (255, 255, 255); /* Como valores rgb */
|
color: rgb (255, 255, 255); /* Como valores rgb */
|
||||||
cor: RGB (10%, 20%, 50%); /* Como porcentagens rgb */
|
color: RGB (10%, 20%, 50%); /* Como porcentagens rgb */
|
||||||
cor: rgba (255, 0, 0, 0,3); /* Como valores RGBA (CSS 3) NOTA: 0 <a <1 */
|
color: rgba (255, 0, 0, 0,3); /* Como valores RGBA (CSS 3) NOTA: 0 <a <1 */
|
||||||
color: transparent; /* Equivale a definir o alfa a 0 */
|
color: transparent; /* Equivale a definir o alfa a 0 */
|
||||||
cor: HSL (0, 100%, 50%); /* Como porcentagens HSL (CSS 3) */
|
color: HSL (0, 100%, 50%); /* Como porcentagens HSL (CSS 3) */
|
||||||
cor: HSLA (0, 100%, 50%, 0,3); /* Como porcentagens HSLA com alfa */
|
color: HSLA (0, 100%, 50%, 0,3); /* Como porcentagens HSLA com alfa */
|
||||||
|
|
||||||
/* Imagens como fundos de elementos */
|
/* Imagens como fundos de elementos */
|
||||||
background-image: url (/img-path/img.jpg); /* Citações dentro url () opcional */
|
background-image: url (/img-path/img.jpg); /* Citações dentro url () opcional */
|
||||||
|
Reference in New Issue
Block a user