We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5963d53 commit a131365Copy full SHA for a131365
myWork/03-CSS-Fundamentals/index.html
@@ -106,6 +106,8 @@ <h3>Why should you learn HTML?</h3>
106
</ul>
107
108
<p>Hopefully you learned something new here. See you next time!</p>
109
+
110
+ <button class="like-button">❤Like</button>
111
</article>
112
113
<aside class="related-aside">
myWork/03-CSS-Fundamentals/style.css
@@ -146,8 +146,20 @@ strong {
146
147
.product-article {
148
margin-bottom: 20px;
149
150
+ position: relative;
151
}
152
153
.learn-more-at {
154
padding: 0;
155
156
157
+.like-button {
158
+ font-size: 18px;
159
+ padding: 10px;
160
+ cursor: pointer;
161
162
+ position: absolute;
163
+ bottom: 0;
164
+ right: 0;
165
+}
0 commit comments