Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

CSS Level 5 Lesson 8

This lesson is a quick revision of the level and the instruction said that I do not need to do anything, just click the submit btn. However, when I clicked the submit btn, it won't go to the next level and bring me back to the same level 5 lesson 8. Am I misunderstanding the instruction? Any helps will be appreciate.
by

2 Answers

kshitijrana14
Try this one

<!DOCTYPE html>
<html>
<head>
<title>CSS Box Sizing</title>
<style>
div{
/ Add CSS property box-sizing here/
box-sizing:border-box;
}
p, div{
color: #7868e6;
border: 4px solid #4535aa;
padding: 50px;
font-size: 30px;
width: 500px;
}
</style>
</head>
<body>
<div>Studytonight</div>
<p>Welcome to Studytonight.</p>
</body>
</html>
PiggePiggy
Hi kshitjirana14,

Thank you for you reply. I didn't have the chance to test your method because today I just click in the same lesson and it automatilly brought me to the next level. I tried to go back to level 5 lesson 8 and it won't let me so... Seems like some magic just happened!

Thank You.

Login / Signup to Answer the Question.