Menu
×
×
Correct!
Exercise:With the
<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 ❯<style> div { width: 100px; height: 100px; margin: 50px; background-color: lightblue; border: 1px solid black;: ; } </style> <body> <div>This is a div</div> </body> |