I'm just writing to either confirm, this is a known bug / missing feature, of if I did understanding something wrong.
I have the following CSS fragment:
```
@page :left {
margin-left: 1cm;
margin-right: 1.5cm;
@bottom-left {
content: counter(page);
vertical-align: bottom;
}
article.entry .page .text {
order: 2;
text-align: right;
}
article.entry .page .image {
order: 1;
}
}
@page :right {
margin-left: 1.5cm;
margin-right: 1cm;
@bottom-right {
content: counter(page);
vertical-align: bottom;
}
article.entry .page .text {
order: 1;
text-align: left;
}
article.entry .page .image {
order: 2;
}
}
```
My expectation is that the page number the image part and the text are displayed different on a left and a right spread. From inner side (binding edge) to the outer side the text, then a image and then the page number should appear.
This doesn't work in Prince except for the page number...
I have the following CSS fragment:
```
@page :left {
margin-left: 1cm;
margin-right: 1.5cm;
@bottom-left {
content: counter(page);
vertical-align: bottom;
}
article.entry .page .text {
order: 2;
text-align: right;
}
article.entry .page .image {
order: 1;
}
}
@page :right {
margin-left: 1.5cm;
margin-right: 1cm;
@bottom-right {
content: counter(page);
vertical-align: bottom;
}
article.entry .page .text {
order: 1;
text-align: left;
}
article.entry .page .image {
order: 2;
}
}
```
My expectation is that the page number the image part and the text are displayed different on a left and a right spread. From inner side (binding edge) to the outer side the text, then a image and then the page number should appear.
This doesn't work in Prince except for the page number...


