Hi, I have been trying to pass the Applied Visual Design: Use the CSS Transform scale Property to Scale an Element on Hover. I put the code in exactly as I thought it was to go and I checked it with the video and I believe it is correct. I did use the p: first, but changed it to div: after I watched the video. The test also says it is wrong. In the video, the element did not change when you hovered over it. This is the only challenge I have left to finish this section. Here is the code I wrote:
<style>
div {
width: 70%;
height: 100px;
margin: 50px auto;
background: linear-gradient(
53deg,
#ccfffc,
#ffcccf
);
}
div:hover {
transform: scale (1.1);
}