diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-01-11 14:21:55 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-11 14:21:55 +0530 | 
| commit | 194d3ae7abb6394235d0c5605214584e90df3a29 (patch) | |
| tree | dfc73ecb7f7cfcd48afba0e5133ce3291efa42da /css.html.markdown | |
| parent | afd97f0da5079d071762aa5b05381c2c86d87b15 (diff) | |
| parent | 3b4ca43798a2fc0483c1a3a195ddde934cd2983f (diff) | |
Merge pull request #3693 from davidgtu/css/spacing
[en/css] fix spacing
Diffstat (limited to 'css.html.markdown')
| -rw-r--r-- | css.html.markdown | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/css.html.markdown b/css.html.markdown index 64dc097c..5a9d1376 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -164,14 +164,14 @@ selector {      max-width: 5in;   /* inches */      /* Colors */ -    color: #F6E;                 /* short hex format */ -    color: #FF66EE;              /* long hex format */ -    color: tomato;               /* a named color */ -    color: rgb(255, 255, 255);   /* as rgb values */ -    color: rgb(10%, 20%, 50%);   /* as rgb percentages */ -    color: rgba(255, 0, 0, 0.3); /* as rgba values (CSS 3) Note: 0 <= a <= 1 */ -    color: transparent;          /* equivalent to setting the alpha to 0 */ -    color: hsl(0, 100%, 50%);    /* as hsl percentages (CSS 3) */ +    color: #F6E;                    /* short hex format */ +    color: #FF66EE;                 /* long hex format */ +    color: tomato;                  /* a named color */ +    color: rgb(255, 255, 255);      /* as rgb values */ +    color: rgb(10%, 20%, 50%);      /* as rgb percentages */ +    color: rgba(255, 0, 0, 0.3);    /* as rgba values (CSS 3) Note: 0 <= a <= 1 */ +    color: transparent;             /* equivalent to setting the alpha to 0 */ +    color: hsl(0, 100%, 50%);       /* as hsl percentages (CSS 3) */      color: hsla(0, 100%, 50%, 0.3); /* as hsl percentages with alpha */      /* Borders */ | 
