|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 477
Karma: 1167803
Join Date: Dec 2011
Location: Padova, Italy
Device: Kindle3, Odyssey, eDGe, A60, PRS-T1, iPad3, KoboGlo
|
[SOLVED] Aligning text inside a <p> and an image <img> vertically (iBooks)
since I looked for this and did not find any solutions, I would like to share my solution, hoping it will save time and an headache to someone in the future. The problem I had the following piece of code: Code:
<p class="question"><img class="question" src="../Images/questionMark.jpg" alt="Domande utili da porsi" />Domande utili da porsi</p> Code:
img.question {
vertical-align: middle;
}
Unfortunately, iBooks aligned the image and the text as if "text-bottom" was selected instead of "middle". (See attached iBooks.png). The solution Put the damn' image inside a <span> ! Code:
<p class="question"><span><img class="question" src="../Images/questionMark.jpg" alt="Domande utili da porsi" /></span>Domande utili da porsi</p> |
|
|
|
|
|
#2 |
|
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 477
Karma: 1167803
Join Date: Dec 2011
Location: Padova, Italy
Device: Kindle3, Odyssey, eDGe, A60, PRS-T1, iPad3, KoboGlo
|
Oh, I forgot: I know that the expected result can be achieved with a table, but, for other reasons, I did not want to use tables.
__________________
Personal Website (EN): http://www.albertopettarin.it/ (My) Company Website (EN/IT): http://www.smuuks.it/ Coordinator Member of eBookClub Italia: http://ebci.it/ Last edited by AlPe; 10-20-2012 at 12:03 PM. |
|
|
|
|
Enthusiast
|
|
![]() |
| Thread Tools | Search this Thread |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| iBooks: Text overflowing image if it's at top of screen. | Oxford-eBooks | ePub | 30 | 05-10-2013 12:56 AM |
| How to make TextView inside ViewPager scroll vertically | polygrimm | Android Developer's Corner | 0 | 07-03-2012 07:59 AM |
| Right Aligning Wrapped Text Only | ghostyjack | ePub | 7 | 11-04-2010 08:54 AM |
| Correctly Aligning Text Within a Table | ghostyjack | ePub | 3 | 07-28-2010 07:18 AM |
| How to center an image vertically | GBAV | ePub | 23 | 06-16-2010 10:41 AM |