Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Chrome -webkit-border-radius bug? Re: Chrome -webkit-border-radius bug?

#120461
joelcarlo
Member

There is a workaround here. It uses box-shadow to create a generic border element. Should work until a bug fix is made.

img {
border-radius: 5px;
box-shadow: 0px 0px 0px 1px green;
}