What is the best width and height for picture following five lines of text in the style.css: { margin: 0; padding: 0; } .Picture2 img{ width: 34px; height: 21px; margin-left: -2px; margin-top: -2px; border-radius: 15px 15px 0 0; } .Picture3 img{ width: 34px; height: 21px; margin-left: -2px; margin-top: -2px; border-radius: 15px 15px 0 0; a{ text-decoration: none; color: black; } html: Plastic Pollution . . . Or shall I use div for pictures in the html?
What is the best width and height for picture following five lines of text in the style.css:
{
margin: 0;
padding: 0;
}
.Picture2 img{
width: 34px;
height: 21px;
margin-left: -2px;
margin-top: -2px;
border-radius: 15px 15px 0 0;
}
.Picture3 img{
width: 34px;
height: 21px;
margin-left: -2px;
margin-top: -2px;
border-radius: 15px 15px 0 0;
a{
text-decoration: none;
color: black;
}
html:
<article>
<h2>Plastic Pollution</h2>
<p>.</p>
<p>.</p>
<p>.</p>
<p></p>
<p></p>
<p></p>
<img src="Picture2.jpg">
<img src="Picture3.jpg">
</main>
Or shall I use div for pictures in the html?
Step by step
Solved in 3 steps