summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2020-01-11 14:25:43 +0530
committerGitHub <noreply@github.com>2020-01-11 14:25:43 +0530
commit4fc75ab0a3234c58b704a3b3caa0d108861cfa60 (patch)
tree572931f41d520c91143d4ec0b6c8f8fc20e527e7
parentabc70149c293379694786cf87f5538a8a4142f05 (diff)
parentabcfb458343c1cd0e1559dfb1d54c03f2a3c17ad (diff)
Merge pull request #3697 from apooravc/add-css-resource
[css/en] Added a resource (tutorial)
-rw-r--r--css.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/css.html.markdown b/css.html.markdown
index 5a9d1376..b8adc886 100644
--- a/css.html.markdown
+++ b/css.html.markdown
@@ -179,7 +179,7 @@ selector {
border-style:solid;
border-color:red; /* similar to how background-color is set */
border: 5px solid red; /* this is a short hand approach for the same */
- border-radius:20px; /* this is a CSS3 property */
+ border-radius:20px; /* this is a CSS3 property */
/* Images as backgrounds of elements */
background-image: url(/img-path/img.jpg); /* quotes inside url() optional */
@@ -317,6 +317,7 @@ a new feature.
* [Dabblet](http://dabblet.com/) (CSS playground)
* [Mozilla Developer Network's CSS documentation](https://developer.mozilla.org/en-US/docs/Web/CSS) (Tutorials and reference)
* [Codrops' CSS Reference](http://tympanus.net/codrops/css_reference/) (Reference)
+* [DevTips' CSS Basics](https://www.youtube.com/playlist?list=PLqGj3iMvMa4IOmy04kDxh_hqODMqoeeCy) (Tutorials)
## Further Reading