Skip to content

Commit 8d42a9c

Browse files
committed
add a css resource
1 parent 0bd6dd4 commit 8d42a9c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

content/pages/04-web-development/17-css.markdown

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ meta: Learn how to use Cascading Style Sheets (CSS) to create your web applicati
1111
Cascading Style Sheet (CSS) files contain rules for how to display and
1212
lay out the HTML content when it is rendered by a web browser.
1313

14-
<img src="/img/logos/css.jpg" width="100%" alt="CSS3 logo." class="technical-diagram" />
14+
<img src="/img/logos/css.jpg" width="100%" alt="CSS3 logo." class="shot">
1515

1616

1717
## Why is CSS necessary?
@@ -28,13 +28,13 @@ needed to render the content. The web browser requests the CSS file after the
2828
HTML file as shown below in a screenshot captured of the Chrome Web Developer
2929
Tools network traffic.
3030

31-
<img src="/img/visuals/css-chrome-dev-tools.jpg" width="100%" alt="Google Chrome Web Developer Tools shows how CSS is separate from the HTML content." class="technical-diagram" />
31+
<img src="/img/visuals/css-chrome-dev-tools.jpg" width="100%" alt="Google Chrome Web Developer Tools shows how CSS is separate from the HTML content." class="shot rnd outl">
3232

3333
That request for the fsp.css file is made because the HTML file for Full
3434
Stack Python contains a reference to ``theme/css/fsp.css`` which is shown
3535
in the view source screenshot below.
3636

37-
<img src="/img/visuals/fsp-css-source.jpg" width="100%" alt="View source screenshot for the fsp.css file in index.html." class="technical-diagram" />
37+
<img src="/img/visuals/fsp-css-source.jpg" width="100%" alt="View source screenshot for the fsp.css file in index.html." class="shot rnd outl" />
3838

3939

4040
## CSS preprocessors
@@ -96,6 +96,10 @@ web application's design.
9696
is one of the largest collections of valuable resources for frontend
9797
learning both in CSS as well as JavaScript.
9898

99+
* [CSS Reference](https://cssreference.io/) provides much-needed visual
100+
examples for every CSS property to show you what they are actually going
101+
to look like on your pagee when you use them.
102+
99103
* [CSS coding techniques](https://hacks.mozilla.org/2016/05/css-coding-techniques/)
100104
provides advice on how to write simpler, easier-to-maintain CSS code
101105
to reduce your need to rely on CSS preprocessors and build pipelines.

0 commit comments

Comments
 (0)