scrimba
7 CSS Challenges
Introduction - CSS Challenge 5 - Tile-Hovering Game
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Introduction - CSS Challenge 5 - Tile-Hovering Game
AboutCommentsNotes
Introduction - CSS Challenge 5 - Tile-Hovering Game
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<title>CSS Challenge 5 - Tile-Hovering Game</title>
</head>
<body>

<div class="tiles">
<div class="tile1 tile"></div>
<div class="tile2 tile"></div>
<div class="tile3 tile"></div>
<div class="tile4 tile"></div>
<div class="tile5 tile"></div>
<div class="tile6 tile"></div>
<div class="tile7 tile"></div>
<div class="tile8 tile"></div>
<div class="tile9 tile"></div>
</div>

</body>
</html>
Console
/index.html
-1:21