Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Unused CSS Stages Transitions and Transforms Transitions - WebKit Only

transition property border radius is wrong??

why i get a bummer i also tried to set the transition property border radius in the box class. but i always get a bummer

but the code works!!

index.html
<!DOCTYPE html>
<html>
<head>
    <title>CSS Transitions</title>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="box"></div>
</body>
</html>
style.css
/* Complete the challenge by writing CSS below */

.box {
    border-radius: 15px;
    background: #4682B4;
  transition-duration:2; 
  transition-delay:1;
  transition-timing-function:linear; 
 }

.box:hover {
  transition-property: border-radius; 
    background: #F08080;
    border-radius: 50%;
}

1 Answer

Britta, a couple things. You have to include -webkit-transition-property: border-radius, and also define the duration in seconds. Make sure you're adding the prefix for WebKit-based browsers on the other transitions as well.

-webkit-transition-property: border-radius;
-webkit-transition-duration: 2s; 
-webkit-transition-delay: 1s;
 webkit-transition-timing-function: linear; 

THANKS A LOT !!!!