-
Notifications
You must be signed in to change notification settings - Fork 167
Closed
Labels
Description
Take this simple HTML code :
<!doctype html>
<html>
<head>
<style type="text/css" media="screen">
div {
width: 200px;
height: 200px;
background: red;
border-radius: 0 0 30px 30px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
Using SnappySnippet to copy the style, you'll lose a part of border-radius
value :
border-radius: 0 0 30px 30px;
become border-radius: 0 30px 30px;
I guess we can find the same issue with other 4-val properties