ANyone know how to implement rounded corners? bord...
# advancedpdf
s
ANyone know how to implement rounded corners? border-radius doesn't work...
m
s
Is there any way to customize / target specific corners?
If I apply corner-radius to a table in CSS, it rounds ALL the th and looks like this
message has been deleted
this is like table { corner-radius 15px; }
m
Give the elements you want the style applied to a class or id and target that
s
I have to add the border and corner-radius to the parent table.XXX in CSS for the border to look rounded. But then it affects the header borders like I said. I tried to target the th like table.XXX th {corner-radius 0px } But when I do that, the header has a flat rectangular black box AND the global border is still curved. So the black box corners stick out...
thanks for the suggestion tho