2017-09-07 5 views
0

So bin ich gerade dabei, ein EPUB E-Book zu erstellen, es ist in der Nähe bereit, vollständig beschriftet zu werden, aber ich habe ein Problem mit ADE-basierten Lesern (statt zu rechtfertigen und richtet sich weigert, (aber zentrierte Ausrichtung funktioniert gut)Text wird nicht auf einigen E-Reader-Apps gerechtfertigt, aber auf anderen

ich gereinigt haben die CSS und geprüft und erneut überprüft die Eigenschaften, und ich sehe keine widersprüchlichen Ausrichtungen in der CSS-getestet auf Bluefire Reader), wo der Text links

Ich habe versucht Prestigio E-Reader auf Android sowie Kindlepreview auf dem PC und beide von denen angezeigt fein Es gibt keine erzwungene Textausrichtung auf Bluefire selbst

Wer hat irgendwelche Anregungen?

CSS in Frage:

@font-face { 
font-family:"Calibri"; 
font-style:normal; 
font-weight:normal; 
src : url("../Fonts/Calibri.TTF"); 
} 
@font-face { 
font-family:"Minion Pro"; 
font-style:normal; 
font-weight:normal; 
src : url("../Fonts/MinionPro-Regular.otf"); 
} 
@font-face { 
font-family:"Calibri"; 
font-style:italic; 
font-weight:bold; 
src : url("../Fonts/Calibri-BoldItalic.TTF"); 
} 
@font-face { 
font-family:"Calibri"; 
font-style:oblique; 
font-weight:bold; 
src : url("../Fonts/Calibri-BoldItalic.TTF"); 
} 
@font-face { 
font-family:"Calibri"; 
font-style:normal; 
font-weight:bold; 
src : url("../Fonts/Calibri-Bold.TTF"); 
} 
@font-face { 
font-family:"Calibri"; 
font-style:italic; 
font-weight:normal; 
src : url("../Fonts/Calibri-Italic.TTF"); 
} 
@font-face { 
font-family:"Calibri"; 
font-style:oblique; 
font-weight:normal; 
src : url("../Fonts/Calibri-Italic.TTF"); 
} 


td, th { 
border-style: solid; 
border-width: 1px; 
padding: 0.2em; 

} 
li { 
display:block; 
text-align: justify; 
} 

table { 
border: 1px solid black; 
border-collapse: collapse; 
max-width: 80%; 
margin: auto; 
} 

span.bold { 
font-family:"Calibri", sans-serif; 
font-style:normal; 
font-weight:bold; !important 
} 
span.char-style-override-4 { 
font-family:"Calibri", sans-serif; 

font-style:italic; 

} 
span.char-style-override-14 { 
text-decoration: underline; 
} 
/* _______________________________Pamats_________________________ */ 

body { 

font-family : "Calibri", serif; 

margin-left:3% ; 

margin-right:3% ; 

margin-top:5% ; 

margin-bottom:3% ; 
-epub-hyphens:auto; 
-webkit-hyphens:auto; 
} 
@page { 

margin :10pt; 

} 

h1 { 
text-align: left; 
font-size: 1.0em; 
font-weight: normal; 
} 

/* ______________________________________paragrāfi___________________ */ 

p.Normal { 
font-family:"Calibri"; 
font-size:1em; 
font-style:normal; 
font-weight:normal; 
text-decoration : none; 
font-variant : normal; 
line-height : 1.25; 
color : #000000; 
text-indent : 1em; 
margin : 0px; 
page-break-after: avoid; 
text-align: justify; !important 
} 
p.centrs { 
text-align: center; 
} 
span.italic { 
font-style:italic; 
font-weight:normal; 
} 
span.bi { 
font-style:italic; 
font-weight:bold; 
} 
div.vestule p.Normal { 
text-indent: 2em; 
margin-left: 1em; 
} 
ul p.Normal { 
text-indent: 0; 
} 
a { 
color:#000000; 
} 
h2{ 
text-align: left; 
font-size: 1em; 
font-weight: normal; 
} 
image{ 
max-width:100%; 
height:auto; 
} 
img{ 
max-width:100%; 
height:auto; 
} 

Antwort

0

Das Problem wurde, gab es Parse-Fehler, ich gestellt hatte wichtig, nach ";", Ausgabe ist nun behoben!

Verwandte Themen