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.
Forum › Bugs
Border-radius not working in Prince 8.0 Beta
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>
It doesn't work for me when the styles are in this order:
p {
border-radius: 3mm;
border: solid red thick;
}
p {
border-radius: 3mm;
border: solid red thick;
}
But this works?
p {
border: solid red thick;
border-radius: 3mm;
}
p {
border: solid red thick;
border-radius: 3mm;
}
Jim Albright
Wycliffe Bible Translators