×
×
Correct!
With the
<style>
div {
width: 100px;
height: 100px;
margin: 50px;
background-color: lightblue;
border: 1px solid black;
transform: skew(20deg, 30deg);
}
</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: skew(20deg,30deg);
}
</style>
<body>
<div>This is a div</div>
</body>
Not CorrectClick here to try again. Correct!<style> div { width: 100px; height: 100px; margin: 50px; background-color: lightblue; border: 1px solid black;: ; } </style> <body> <div>This is a div</div> </body> |