Skip to content

Issue with border-radius #4

@zessx

Description

@zessx

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions