I am trying to apply css attributes based on whether a div appears on a left page or a right page. I want a border to be on the outside (right for right page, left for left page). Is there some way to specify page side? Is there something like this?
.contentbody {
padding-right: .125in;
border-right: thin dotted black;
}
.contentbody:left {
border-right: 0;
border-left: thin dotted black;
}