Hello people,
I just can’t figure out how to float the image to the left.
I tried a lot of things and also looked in the hint box …
This is my HTML code:
/*
<div class="main">
<div class="container">
<img src=https://s3.amazonaws.com/codecademy-content/projects/innovation-cloud/cloud.svg />
<h2>The Innovation Cloud Conference</h2>
<p>Connect with the best minds across a wide range of industries to share ideas and brainstorm new solutions to challenging problems.</p>
<p>Hear industry leaders talk about what worked (and what didn't) so that you can save time on your most challenging projects.</p>
<p>Learn about the latest research and technologies that you can use immediately to invent the future.</p>
</div>
</div>
*/
This is my css code:
/* Main */
.main
{
background-color: white;
}
.main .container {
margin: 40px auto;
}
.main img
{
float: left;
}
thank you,
NNDR