Why are box shadows with decimals sometimes not displayed in Safari?
Is there a solution to this issue?
Here's an example of the code:
div {
width: 200px;
height: 200px;
box-shadow: 0px 0.0351725rem 0.0351725rem 0px, 0px 0px 0px 0.0175862rem;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div></div>
</body>
</html>