Quote:
Originally Posted by abeonis
The align attribute for img to define the vertical alignment doesn't pass FlightCrew ePub check. I use it in HTML coding to align a formula with the text: Exemple:
Code:
<p>La potencia <img src="potencia.gif" alt="Cálculo de potencia" align="middle" /> en vatios </p>
Generates an error message: "Attribute align is not declared for element img"
|
If you want to use inline styles, you'll have to use
style="vertical-align:middle" instead of
align="middle".