diff options
author | Adam Bard <github@adambard.com> | 2014-05-01 14:36:35 -0230 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2014-05-01 14:36:35 -0230 |
commit | 634f1b3807dfb81f75af25cff7a77fc8bd322959 (patch) | |
tree | e829d30f146d625753019e07fe76674dbae80cbf | |
parent | 2113e4a6c4f43632adbdfd2e6f1e6d5ecf5b3ddb (diff) | |
parent | 4095671c9250aab8e15473bc73b5db2cdbc95229 (diff) |
Merge pull request #598 from ml242/master
Update css.html.markdown
-rw-r--r-- | css.html.markdown | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/css.html.markdown b/css.html.markdown index 76319340..cdef50cc 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -44,16 +44,16 @@ Given an element like this on the page: <div class='some-class class2' id='someId' attr='value' /> */ -/* you can target it by it's class name */ +/* you can target it by its name */ .some-class { } /*or by both classes! */ .some-class.class2 { } -/* or by it's tag name */ +/* or by its element name */ div { } -/* or it's id */ +/* or its id */ #someId { } /* or by the fact that it has an attribute! */ @@ -77,12 +77,12 @@ any spaaace between different parts because that makes it to have another meaning.*/ div.some-class[attr$='ue'] { } -/* you can also select an element based on how it's parent is.*/ +/* you can also select an element based on its parent.*/ /*an element which is direct child of an element (selected the same way) */ div.some-parent > .class-name {} -/* or any of it's parents in the tree */ +/* or any of its parents in the tree */ /* the following basically means any element that has class "class-name" and is child of a div with class name "some-parent" IN ANY DEPTH */ div.some-parent .class-name {} @@ -91,7 +91,7 @@ div.some-parent .class-name {} can you say what? */ div.some-parent.class-name {} -/* you also might choose to select an element based on it's direct +/* you also might choose to select an element based on its direct previous sibling */ .i-am-before + .this-element { } @@ -99,7 +99,7 @@ previous sibling */ .i-am-any-before ~ .this-element {} /* There are some pseudo classes that allows you to select an element -based on it's page behaviour (rather than page structure) */ +based on its page behaviour (rather than page structure) */ /* for example for when an element is hovered */ :hover {} |