I got a div and it got certain property of css. What I want to do is I want to give the div certain color on safari is this possible?
<div class="disClass">Example div</div>
css
. divClass{
  width: 50px;
  height: 50px;
  background-color:'red'
  //safari only
  // background-color:'blue'
  //
}
 
    