Skip to content

Commit 6ca5ff5

Browse files
committed
fix the third image height
1 parent 120f282 commit 6ca5ff5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Wireframe/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ <h2>wireframe</h2>
3232
</p>
3333
<a href="">Read more</a>
3434
</article>
35-
<article>
36-
<img src="/Wireframe/images/branch.webp" alt="Git Branch" height="420"/>
35+
<article >
36+
<img src="/Wireframe/images/branch.webp" alt="Git Branch" id="img3"/>
3737
<h2>Git Branch</h2>
3838
<p>
3939
A branch in Git is like a parallel version of a repository. It allows you to

Wireframe/style.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ Setting the rules for how elements are placed in the article.
8282
Now laying out just the INSIDE of the repeated card/article design.
8383
Keeping things orderly and separate is the key to good, simple CSS.
8484
*/
85+
#img3{
86+
height: 420px;
87+
}
8588
article {
8689
border: var(--line);
8790
border-radius: 15px;
@@ -98,7 +101,3 @@ article {
98101
}
99102
}
100103

101-
102-
#img3{
103-
height:"420px";
104-
}

0 commit comments

Comments
 (0)