Results 1 to 2 of 2

Thread: Text-bottom in Opera

  1. #1
    Join Date
    Nov 2009
    Location
    Isfahan, Iran
    Posts
    229
    Thanks
    46
    Thanked 1 Time in 1 Post

    Default Text-bottom in Opera

    Hi,

    The following doesn't work in Opera:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title></title>
    <style type="text/css">
    p {font:10pt Arial; background:green; height:16px;}
    img {width:16px; height:16px; vertical-align:text-bottom;}
    </style>
    </head>
    <body>
    <p>An <img src="https://ssl.gstatic.com/images/icons/gplus-16.png" alt=""> image with a text-bottom alignment.</p>
    </body>
    </html>
    Is it a bug or am I missing something?
    Thanks!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Looks that way - Or Opera enthusiasts might say Opera has it right and all those others are wrong.

    To my mind the text-bottom should go to the baseline formed by the font's lowest reaching descender (like the bottom of a g, q, or j (others?)). This appears to be what other browsers are doing, while Opera appears to be adding twice the height of the descender portion of the font.

    In any case, in your scenario if you change the vertical-align to just bottom:

    Code:
    verticla-align: bottom;
    Opera, IE, and Firefox all agree, and it looks like the text-bottom one did in Firefox and IE. And the 16px height on the p element is not required, at least not in the most recent versions of those browsers.

    Which makes me wonder, if bottom is the same as text-bottom in those others, why bother using text-bottom?
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •