2017-09-07 33 views
0

현재 EPUB 전자 책을 만드는 과정에 있으며 준비가 거의 끝났습니다.하지만 ADE 기반 독자와 관련된 문제가 있습니다 (텍스트를 정당화하기를 거부하고 대신 왼쪽 정렬 BlueFire 리더), 테스트 (그러나 중앙 정렬일부 전자 판독기 응용 프로그램에서는 텍스트가 맞지 않지만 다른 사람은 읽습니다.

) 잘 작동 나는 CSS를 청소하고, 확인하고 등록 정보를 다시 확인해하고 나는 CSS에서 충돌하는 정렬을 볼

나는 PC에서 kindlepreview뿐만 아니라 안드로이드에 Prestigio 전자 판독기를 시도하고 모두 잘 표시 된 그들 Bluefire 자체에 시행 된 텍스트 정렬이 없습니다

누구나 sugestions가 있습니까? 문제

CSS가 :!

@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; 
} 

답변

0

문제는, 구문 분석 오류가 있었다, 내가 배치 한 후 중요 ";"문제는 이제 해결!