Is it possible to use different styles for a given element depending on whether it falls in the left or right column?
Here is my use case: My two-column document contains multiple floated images, and on all pages I'd like the images in the left column to float left, and the ones in the right column to float right.
I'm imagining something that would work like this:
Is there a way to get this effect in Prince?
Here is my use case: My two-column document contains multiple floated images, and on all pages I'd like the images in the left column to float left, and the ones in the right column to float right.
I'm imagining something that would work like this:
@column:left {
img { float: left; }
}
@column:right {
img { float: right; }
}
Is there a way to get this effect in Prince?