Perhaps the behavior is not present in current versions. I am still at 2.67(64bit). At the moment, this epub structure:
.separator {
background-image: url(divider04a.jpg);
background-repeat: no-repeat;
height: 37px;
width: 200px;
margin: 1em auto;
}
gets changed in conversion to azw3 as:
.separator {
background-image: url("../images/00001.jpeg");
background-repeat: no-repeat;
display: block;
height: 37px;
margin-bottom: 1em;
margin-top: 1em;
width: 200px
}
|