Currently, I am utilizing GrooCSS 1.0-GA for my CSS coding needs. Regrettably, it appears that GrooCSS does not provide support for breakInside as illustrated in the code snippet below:
GrooCSS.process(new Config(prettyPrint: true)) {
body {
breakInside 'avoid'
}
}.tap {
println it
}
This code snippet results in the following error message:
No signature of method: org.groocss.StyleGroup.breakInside() is applicable for argument types: (String) values: [avoid]
I am wondering if there is a workaround to implement rules not supported by GrooCSS, as I may have overlooked this information in the documentation.
Although I am familiar with pageBreakInside, I would prefer the ability to use both options if feasible.