Skip to content

Commit

Permalink
Merge pull request #2 from wmoline/wmoline-patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
wmoline committed Oct 12, 2015
2 parents 710fb83 + 999b660 commit ecd901e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/css/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ h1 a {

`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!

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`:
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`:

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

0 comments on commit ecd901e

Please sign in to comment.