Forum Bugs

Border-radius not working in Prince 8.0 Beta

marimbus
I just tried a file that produced rounded corners in 6.0 and 7.1. The rounded corners failed in 8.0 Beta. I just wanted to let you know.
mikeday
Which property did you use? Can you try this document, which works for me:
<html>
<head>
<style>
p {
    border: solid red thick;
    border-radius: 3mm
}
</style>
</head>
<body>
<p>Hello</p>
</body>
</html>
marimbus
It doesn't work for me when the styles are in this order:

p {
border-radius: 3mm;
border: solid red thick;
}
jim_albright
But this works?

p {
border: solid red thick;
border-radius: 3mm;
}

Jim Albright
Wycliffe Bible Translators

marimbus
Yes. I'm using the Mac version of 8.0 Beta.
mikeday
The "border" shorthand property resets the border-radius.