Skip to content

Commit 149d491

Browse files
committed
Update
1 parent d55162a commit 149d491

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

css/garden.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,17 @@ ul + header {
175175

176176
ol {
177177
margin-left: 32px;
178+
margin-bottom: 12px;
179+
}
180+
181+
ol li {
182+
font-size: 12px;
183+
padding-bottom: 2px;
184+
}
185+
186+
ul li {
187+
font-size: 12px;
188+
padding-bottom: 2px;
178189
}
179190

180191
ul {

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -626,10 +626,10 @@ <h1>JavaScript Garden</h1>
626626
scope, JavaScript will lookup the name in the following order:</p>
627627

628628
<ol>
629-
<li><p>In case there's a <code>var foo</code> statement in the current scope use that.</p></li>
630-
<li><p>If one of the function parameters is named <code>foo</code> use that.</p></li>
631-
<li><p>If the function itself is called <code>foo</code> use that.</p></li>
632-
<li><p>Go to the next outer scope and start from <strong>#1</strong> again.</p></li>
629+
<li>In case there's a <code>var foo</code> statement in the current scope use that.</li>
630+
<li>If one of the function parameters is named <code>foo</code> use that.</li>
631+
<li>If the function itself is called <code>foo</code> use that.</li>
632+
<li>Go to the next outer scope and start from <strong>#1</strong> again.</li>
633633
</ol>
634634

635635
<blockquote>

0 commit comments

Comments
 (0)