diff options
author | willianjusten <willianjustenqui@gmail.com> | 2015-10-03 21:00:47 -0300 |
---|---|---|
committer | willianjusten <willianjustenqui@gmail.com> | 2015-10-03 21:00:47 -0300 |
commit | 5578db0705e0fe05c40e5cad404fae47767eafa9 (patch) | |
tree | b2588868f4ae66387dd78572a451f0230b03c561 /css.html.markdown | |
parent | 46d509077f10fc9b04aaf69829526d4b8297798d (diff) | |
parent | 9b46fe7e57bcf63785b67cdaffc49ff0d47d7476 (diff) |
Merge remote-tracking branch 'upstream/master'
* upstream/master:
Add section on eunit in erlang doc
Add clarification on bind / match with = op in erlang. Fixes #1139
Removed random "r"
Add to contributors
Misc. typos and formatting
More explanation on virtual destructors
Clarify character literals
Fixing typo in julia-es.html.markdown
[xml/id] Translated JSON to Indonesian (json-id)
[xml/id] Translated XML to Indonesian (xml-id)
Aligned the comment block
[javascript] Fix for issue 1248
Fixed some grammatical issues/typos
Typos fixed in julia-es.html.markdown
[c++/pt-br] Fix translate on editing object as parameters
Update c++.html.markdown
Add lang: to header of Python3 cs-cz file.
All class constants can be accessed statically
Add `kbd` tag
Fixed the description of attributes and elements.
Diffstat (limited to 'css.html.markdown')
-rw-r--r-- | css.html.markdown | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/css.html.markdown b/css.html.markdown index 9e8664b3..7224d80a 100644 --- a/css.html.markdown +++ b/css.html.markdown @@ -7,19 +7,19 @@ contributors: filename: learncss.css --- -In early days of web there was no visual elements, just pure text. But with the -further development of browser fully visual web pages also became common. +In the early days of the web there were no visual elements, just pure text. But with the +further development of browsers, fully visual web pages also became common. CSS is the standard language that exists to keep the separation between the content (HTML) and the look-and-feel of web pages. In short, what CSS does is to provide a syntax that enables you to target different elements on an HTML page and assign different visual properties to them. -Like any other language, CSS has many versions. Here we focus on CSS2.0 -which is not the most recent but the most widely supported and compatible version. +Like any other languages, CSS has many versions. Here we focus on CSS2.0, +which is not the most recent version, but is the most widely supported and compatible version. -**NOTE:** Because the outcome of CSS is some visual effects, in order to -learn it, you need try all different things in a +**NOTE:** Because the outcome of CSS consists of visual effects, in order to +learn it, you need try everything in a CSS playground like [dabblet](http://dabblet.com/). The main focus of this article is on the syntax and some general tips. |