diff options
author | CY Lim <cylim@CYs-Macbook-2015.local> | 2015-11-02 11:18:19 +1100 |
---|---|---|
committer | CY Lim <cylim@CYs-Macbook-2015.local> | 2015-11-02 11:18:19 +1100 |
commit | 094761f6936e9fbe625a9175a6404e2dca7d6504 (patch) | |
tree | 0999371c1f48011acdfabe8eb3b0e01760833e06 /pt-br/css-pt.html.markdown | |
parent | 44ca091c73afe13ec8760021cfed1d77afc5e4a5 (diff) | |
parent | 463cec82d08a58c6452b5b2beec5ee3b99e33ba6 (diff) |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'pt-br/css-pt.html.markdown')
-rw-r--r-- | pt-br/css-pt.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pt-br/css-pt.html.markdown b/pt-br/css-pt.html.markdown index ed6f6c4c..b1fbd961 100644 --- a/pt-br/css-pt.html.markdown +++ b/pt-br/css-pt.html.markdown @@ -159,11 +159,11 @@ seletor { color: # FF66EE; /* Formato hexadecimal longo */ color: tomato; /* Uma cor nomeada */ color: rgb (255, 255, 255); /* Como valores rgb */ - cor: RGB (10%, 20%, 50%); /* Como porcentagens rgb */ - cor: rgba (255, 0, 0, 0,3); /* Como valores RGBA (CSS 3) NOTA: 0 <a <1 */ + color: RGB (10%, 20%, 50%); /* Como porcentagens rgb */ + 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 */ - cor: HSL (0, 100%, 50%); /* Como porcentagens HSL (CSS 3) */ - cor: HSLA (0, 100%, 50%, 0,3); /* Como porcentagens HSLA com alfa */ + color: HSL (0, 100%, 50%); /* Como porcentagens HSL (CSS 3) */ + color: HSLA (0, 100%, 50%, 0,3); /* Como porcentagens HSLA com alfa */ /* Imagens como fundos de elementos */ background-image: url (/img-path/img.jpg); /* Citações dentro url () opcional */ |