I have a bordered div that breaks across the page. Using
Is there a way to not have rounding on the bottom of page 1 or the top of page 2?
I've attached a screenshot, too.
box-decoration-break: slice;
I can make the div not have a bottom border on page 1, and not have a top border on page 2, which is what I want. But because my div has rounded corners, it looks funny with the rounding into no border. To see what I mean, run this:echo '<style>div { border-radius: 6px; border: 3px solid lightgrey; box-decoration-break: slice; font-size: 1in; position: relative;}</style><div>Hello<br/><br/><br/><br/>a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</div>' > test.html; prince test.html
Is there a way to not have rounding on the bottom of page 1 or the top of page 2?
I've attached a screenshot, too.