I'm learner of Sass, and want to include border radius of 25px with browser compatibility but getting error. Any help would be appreciated.
$red: #F00;
$border-radius:
-webkit-border-radius:25px;
-moz-border-radius:25px;
border-radius:25px;
h5 {
font-size: 12px;
padding: 20px;
border-radius: $border-radius;
background: $red;
}