mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Fixed small typo
This commit is contained in:
parent
0401e0d5f0
commit
2657960b5d
@ -169,9 +169,9 @@ selector {
|
|||||||
color: transparent; /* equivalent to setting the alpha to 0 */
|
color: transparent; /* equivalent to setting the alpha to 0 */
|
||||||
color: hsl(0, 100%, 50%); /* as hsl percentages (CSS 3) */
|
color: hsl(0, 100%, 50%); /* as hsl percentages (CSS 3) */
|
||||||
color: hsla(0, 100%, 50%, 0.3); /* as hsl percentages with alpha */
|
color: hsla(0, 100%, 50%, 0.3); /* as hsl percentages with alpha */
|
||||||
|
|
||||||
/* Borders */
|
/* Borders */
|
||||||
border-width:5px;
|
border-width:5px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color:red; /* similar to how background-color is set */
|
border-color:red; /* similar to how background-color is set */
|
||||||
border: 5px solid red; /* this is a short hand approach for the same */
|
border: 5px solid red; /* this is a short hand approach for the same */
|
||||||
@ -261,7 +261,7 @@ recommended that you avoid its usage.
|
|||||||
|
|
||||||
## Media Queries
|
## Media Queries
|
||||||
|
|
||||||
CSS Media Queries are a feature in CSS 3 which allows you to specify when certain CSS rules should be applied, such as when printed, or when on a screen with certain dimensions or pixel density. They do not add to the selector's specifity.
|
CSS Media Queries are a feature in CSS 3 which allows you to specify when certain CSS rules should be applied, such as when printed, or when on a screen with certain dimensions or pixel density. They do not add to the selector's specificity.
|
||||||
|
|
||||||
```css
|
```css
|
||||||
/* A rule that will be used on all devices */
|
/* A rule that will be used on all devices */
|
||||||
|
Loading…
Reference in New Issue
Block a user