Skip to content

Commit 76512e3

Browse files
committed
edited page layout with floats
1 parent f7ad4df commit 76512e3

File tree

3 files changed

+54
-4
lines changed

3 files changed

+54
-4
lines changed

starter/03-CSS-Fundamentals/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,4 @@ <h4>Related posts</h4>
154154
</footer>
155155
</div>
156156
</body>
157-
</html>
157+
</html>

starter/04-CSS-Layouts/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h6>The Basic Language of the Web: HTML</h6>
1818
-->
1919

2020
<div class="container">
21-
<header class="main-header">
21+
<header class="main-header clearfix">
2222
<h1>📘 The Code Magazine</h1>
2323

2424
<nav>
@@ -28,6 +28,8 @@ <h1>📘 The Code Magazine</h1>
2828
<a href="#">Flexbox</a>
2929
<a href="#">CSS Grid</a>
3030
</nav>
31+
32+
<!-- <div class="clear"></div> -->
3133
</header>
3234

3335
<article>
@@ -39,9 +41,10 @@ <h2>The Basic Language of the Web: HTML</h2>
3941
alt="Headshot of Laura Jones"
4042
height="50"
4143
width="50"
44+
class="author-img"
4245
/>
4346

44-
<p id="author">
47+
<p id="author" class="author">
4548
Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027
4649
</p>
4750

starter/04-CSS-Layouts/style.css

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ body {
1414
}
1515

1616
.container {
17-
width: 800px;
17+
width: 1200px;
1818
/* margin-left: auto;
1919
margin-right: auto; */
2020
margin: 0 auto;
@@ -265,3 +265,50 @@ footer p {
265265
nav p {
266266
font-size: 18px;
267267
} */
268+
269+
/* Using Floats */
270+
.author-img {
271+
float: left;
272+
}
273+
274+
.author {
275+
/* padding-left: 80px; */
276+
margin-top: 10px;
277+
margin-left: 10px;
278+
float: left;
279+
}
280+
281+
h1 {
282+
float: left;
283+
}
284+
285+
nav {
286+
float: right;
287+
}
288+
289+
.clear {
290+
clear: both;
291+
}
292+
293+
.clearfix::after {
294+
clear: both;
295+
content: "";
296+
display: block;
297+
}
298+
article {
299+
/* background-color: green; */
300+
width: 825px;
301+
float: left;
302+
}
303+
304+
aside {
305+
/* background-color: red; */
306+
width: 300px;
307+
float: right;
308+
}
309+
310+
footer {
311+
width: 1200;
312+
clear: both;
313+
/* background-color: blue; */
314+
}

0 commit comments

Comments
 (0)