Menu
×
×
Correct!
Exercise:With the
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
@(9): @(13);
}
</style>
<body>
<div>This is a div</div>
</body>
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
transform: scale(0.5, 2);
}
</style>
<body>
<div>This is a div</div>
</body>
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
transform: scale(0.5,2);
}
</style>
<body>
<div>This is a div</div>
</body>
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
transform: scale(50%,2);
}
</style>
<body>
<div>This is a div</div>
</body>
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
transform: scale(50%, 2);
}
</style>
<body>
<div>This is a div</div>
</body>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?