Skip to content

Commit 19813a9

Browse files
committed
Merge pull request DjangoGirls#4 from wmoline/revert-2-wmoline-patch-2
Revert "Update README.md"
2 parents ecd901e + 3a5dcd8 commit 19813a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/css/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ h1 a {
7878

7979
`h1 a` is a CSS Selector. This means we're applying our styles to any `a` element inside of an `h1` element (e.g. when we have in code something like: `<h1><a href="">link</a></h1>`). In this case, we're telling it to change its color to `#FCA205`, which is orange. Of course, you can put your own color here!
8080

81-
In a CSS file we determine styles for elements in the HTML file. The elements are identified by the element name (for example, `a`, `h1`, `body`), the attribute `class` or the attribute `id`. Class and id are names you give the element by yourself. Classes define groups of elements, and ids point to specific elements. For example, the following tag may be identified by CSS using the tag name `a`, the class `external_link`, or the id `link_to_wiki_page`:
81+
In a CSS file we determine styles for elements in the HTML file. The elements are identified by the element name (i.e. `a`, `h1`, `body`), the attribute `class` or the attribute `id`. Class and id are names you give the element by yourself. Classes define groups of elements, and ids point to specific elements. For example, the following tag may be identified by CSS using the tag name `a`, the class `external_link`, or the id `link_to_wiki_page`:
8282

8383
```html
8484
<a href="http://en.wikipedia.org/wiki/Django" class="external_link" id="link_to_wiki_page">

0 commit comments

Comments
 (0)