Menu
Coddy logo textTech

Cloud III

Lesson 6 of 18 in Coddy's Moving Clouds - HTML/CSS/JS Project course.

challenge icon

Challenge

Easy

In the HTML file, create a div inside the cloud div (.cloud, another one!) with the class name "cloudBubble2".

 

In the CSS file, target the new div and set:

  1. width to 60px
  2. height to 60px
  3. background color to the same as in the cloud div
  4. border radius of 30px
  5. position to absolute
  6. top to -30px
  7. right to 30px

In the end, remove the margin from the .cloud div.

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in Moving Clouds - HTML/CSS/JS Project