Skip to content

Commit f7c71a9

Browse files
committed
Added css to place bottom articles side by side
1 parent b7aec1c commit f7c71a9

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

Wireframe/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2>What is the purpose of a README file?</h2>
2727

2828
<section class="bottom-articles">
2929

30-
<articles id="wireframe-article">
30+
<article id="wireframe-article">
3131
<img src="images/wireframe.png" alt="Example of a webpage wireframe"/>
3232
<h2>What is the purpose of a wireframe?</h2>
3333
<p>
@@ -51,7 +51,7 @@ <h2>What is a branch in Git?</h2>
5151
</main>
5252
<footer>
5353
<p>
54-
54+
Footers usually contain contact links and other information about the site overall
5555
</p>
5656

5757
</footer>

Wireframe/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,12 @@ article {
8787
grid-column: span 3;
8888
}
8989
}
90+
91+
.bottom-articles {
92+
grid-column: span 2;
93+
display: grid;
94+
grid-template-columns: 1fr 1fr;
95+
gap: var(--space);
96+
}
97+
98+

0 commit comments

Comments
 (0)