开发者

Text is different size on different platforms

开发者 https://www.devze.com 2023-02-19 02:24 出处:网络
How do I get precise sizing on different platforms, if each platform renders text at a different size? This issue was exacerbated with the recent release of Firefox 4. This version enables hardware re

How do I get precise sizing on different platforms, if each platform renders text at a different size? This issue was exacerbated with the recent release of Firefox 4. This version enables hardware rendering of text using DirectWrite. The size of the text written with DirectWrite is much taller than text written with no hardware acceleration. Note the following example. Here's the live example if you need to see the CSS.

Text is different size on different platforms

  • Windows 7 64-bit Home
  • ATI Radeon HD 4670
  • DirectWrite is off because my drivers are not updated.
  • 620 x 283

Text is different size on different platforms

  • Windows Vista 64-bit Business
  • nVidia GeForce 8800GT
  • DirectWrite is on because I just updated my drivers.
  • 620 x 293

HTML

<ul>
 <li><a>Nav</a></li>
 <li><a>Nav</a></li>
 <li><a>Nav</a></li>
</ul>
<div>
 Content
</div>

CSS

ul {
 float: left;
 width: 10em;
}

div {
 margin: 0 0 0 12.7em;
 min-height: 26.1em;
} 

Do you see how the navigation lines up with the content when DirectWrite is off, but the navigation is taller than the content when DirectWrite is on? I know there are some hacky solutions. One is to specify everything (font-size, width, height) in px. This is not ideal because the component will not be modular - that is, it can't be re-used in another setting scaled to another size. It also breaks IE6's font size options. Another solution is to use JavaScript to read the physical height of the navigation and make the co开发者_C百科ntent the same height. This is not ideal because it is CSS's role to style. Is there any CSS solution for this?

This is just one of many examples. Another is Firefox 3 on Ubuntu 9 has much wider text, so not all links fit in my primary navigation. I was forced to chop off the last navigation link with max-width: 37em; overflow: hidden.


My honest answer is that you have to deal with different font sizes. Your best bet is to not align the content-height using min-height: 26.1em as it's "hacky". I'd suggest re-structuring your HTML so that the UL is inside the DIV and the bottom line always matches.

Short of that, you can set ul li { line-height: 1em } or similar which will make the LIs always the same height.


I wouldn't worry about it. They are essentially different entities and the content isn't fixed anyway, as you said it will expand if you hit "Advanced Options". I think it looks fine going a tad over, as if its letting you know its not a fixed boundary.
Here's an idea. If you wanted to keep it fixed, you can wrap all of that inside a container DIV and use that to define it's borders. Then use overflow scrolling with the content when it expands outside of the container DIV. As long as its vertical, it shouldn't be too much of a bother

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号