Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
7k views

photoshop pt size conversion to web [closed]

In photoshop, my text size is 5.12pt and font type is Arial. My base font size for my website is 13px/1.23 Arial. How would I convert the 5.12pt size to the same size on web? Thanks!
11
votes
2answers
3k views

Increase the font size in Firebug?

Is there a way to increase the font-size in the Firefox extension Firebug?
10
votes
4answers
114 views

Specify width in *characters*

When using a fixed width font, I'd like to specify the width of an HTML element in characters. The "em" unit is supposed to be the width of the M character, so I should be able to use it to specify a ...
9
votes
2answers
2k views

Get computed font size for DOM element in JS

Is it possible to detect the computed font-size of a DOM element, taking into consideration generic settings made elsewhere (In the body tag for example), inherited values, and so on? A ...
7
votes
2answers
737 views

Get iPhone font-size to be the same as other browsers

A long time back, I read a great article that describes a cross-browser friendly way to size text using CSS. The strategy described is as such: body { font-size:100%; line-height:1.125em; /* ...
7
votes
7answers
803 views

Is there really any point to using relative font sizing in CSS?

I've read a lot about the pros and cons of sizing with either relative or absolute font sizes. Fixed sizes don't zoom in IE6 but that's not much of an issue these days. Accessibility is important, but ...
6
votes
2answers
1k views

Converting between WPF font size and “standard” font size

I've noticed in WPF, the default font size of 12 points is roughly equivalent to 9 points in "normal" applications (e.g. WordPad), 10 pt in WPF is roughly 7 pt standard, and when I try to match the ...
6
votes
2answers
1k views

Incorrect / missing font metrics in Java?

Using a certain font, I use Java's FontLayout to determine its ascent, descent, and leading. (see Java's FontLayout tutorial here) In my specific case I'm using Arial Unicode MS, font size 8. Using ...
5
votes
2answers
123 views

Using fractional em's in CSS's font-size property

Say, I have the following CSS rule defined: .className { font-size:0.89em; } My question is, how "deep" into fractions can I go while specifying 'em's for browsers actually to support it and for ...
5
votes
1answer
103 views

Why does Windows LookAndFeel make fonts too small?

The native Windows LookAndFeel in Java 6 seems to incorrectly size some fonts. Test program: import java.awt.*; import java.awt.event.KeyEvent; import javax.swing.*; public class Test { public ...
5
votes
1answer
129 views

Emacs scrolling behaviour after changing font size

Emacs23 GUI in Ubuntu 10.04 LTS. I've previously not changed any settings relating to Emacs scrolling behaviour. However, today I noticed a peculiar jumping behaviour when scrolling down in a buffer ...
5
votes
3answers
944 views

How to calculate font height in WPF?

For a FontFamily how do I programatically retrieve/calculate the maximum height range for that font at a particular FontSize? I need a value to set the height of a textblock that will display the ...
5
votes
4answers
2k views

CSS - table not using body font size even though I havent set the table font size explicitly

I have a problem whereby I have set the body font-size to 11px, but tables display font at 16px. I have no idea whats causing this - I have been over the CSS and the output (source when browsing to ...
4
votes
5answers
113 views

Best unit for font-sizes in CSS

What are the advantages & disadvantages of each? em, px, % and pt ? My current choice are percentages, the only reason is because I can globally change the font-size of all elements, just by ...
4
votes
3answers
711 views

Why is IE9/Firefox showing a different font size in relation to other browsers?

I'm programming the CSS of a site, and realized that the Internet Explorer 9 is showing different font size in relation to other browsers (Firefox, Chrome, Safari, IE7 and IE8). I've tried using some ...
4
votes
1answer
126 views

How to define alternative font-family corresponding to font-size CSS

I declare font family in CSS: body { font-family: "Segoe UI", "Verdana"; } We all know it means that if the browser does not support the first font, it tries the next font. Now I want if the ...
4
votes
1answer
81 views

Why is font in a button flatter than in a div?

Look at these buttons. On the left you can see a styled div, but on the right is an input button. Font-sizes are the same, but in the button the font is like it's flattened a little bit. Look at the ...
4
votes
7answers
11k views

Changing Body Font-Size based on Font-Family with jQuery

I'm trying to use Myriad Pro as my primary font with Arial and such as a fall-back like so: font: 13px "Myriad Pro", "Helvetica", "Arial", "sans-serif"; I want to change the font-size when Arial or ...
4
votes
8answers
2k views

Ems to Pixel Conversion - Why 62.5% and not 6.25%?

I know that a lot of us are familiar with setting the font size on the body element in our CSS to 62.5%. This means that 1em will equal 10px and helps for keeping things pixel perfect but also allows ...
4
votes
6answers
3k views

Can't detect when Windows Font Size has changed C++ MFC

I'm trying to determine how I can detect when the user changes the Windows Font Size from Normal to Extra Large Fonts, the font size is selected by executing the following steps on a Windows XP ...
3
votes
1answer
212 views

How do I change the font size when printing from Eclipse?

Sometimes I'd like to print my code and read it during lunch. In Eclipse I'm using 10pt Helvetica font, but printing at this size is a waste of paper I think. I changed to font size 6pt, and the print ...
3
votes
1answer
287 views

relative font-size of <sub> or <sup> and their descendants in IE

Trying the "Eric Meyer Reset" I stumbled across an issue concerning the font-size:100% declaration to reset the font size of all suitable elements. font-size:100% means the elements should inherit ...
3
votes
1answer
297 views

Font size too large to fit in cache

So i recently switched to android 3.0 (honeycomb) and i'm having some issues with hardware rendering, specifically at a certain custom view i've written where I use a font size of 200 to display some ...
3
votes
3answers
246 views

Most Standard way to Set Font Sizes in HTML/CSS

I've been working in HTML/CSS for years, but I'd like to clarify something about setting font sizes. What is the best format to set your font? Typically, i've been setting with a font-size in a ...
3
votes
7answers
274 views

Font size. What can I be sure of?

What does font size actually means? Let's take CSS. I have font-size where I can specify a number in pixels, points etc. So, what does 12px means? And what does 20pt means? Is it the maximum width ...
3
votes
1answer
181 views

Changing an element's CSS with respect to different languages

Is there a way to use CSS to style text depending on the language? For example the font Tahoma is widely used for Arabic text, but its size is very tiny when it comes to English text with the same ...
3
votes
2answers
2k views

aptana - changing font-size of code and turning on class assistant

I've recently moved from dreamweaver to aptana and tried to make aptana as similiar as possible;) Lots of changes are done but I still can't find the way to make code font smaller (in dreamweaver ...
3
votes
3answers
652 views

font-size specified on body element is ignored by input

I have a basic web page here http://www.webdevout.net/test?0V, reproduced below <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...
3
votes
3answers
899 views

How to change the default font size in the Swing GTK LookAndFeel?

Is there a way to change the default font size in the Swing GTK LaF? The GTK LaF seems to assume 72dpi, so all the fonts are only 3/4 of the size they should be when using a 96dpi screen. See this ...
3
votes
2answers
3k views

Some font-size's rendered larger on Safari (iPhone)

Are there CSS or other reasons why Safari/iPhone would ignore some font-size settings? On my particular website Safari on the iPhone renders some font-size:13px text larger than font-size:15px text. ...
3
votes
2answers
589 views

JavaScript / jQuery: is it possible to change font-size to fill a set width?

I am writing an application, and in it, I would like to have some h1 elements with variable font size. I use the full width (1000px) of a div as a limiter, and a script that automatically sets the ...
3
votes
5answers
2k views

How to measure the pixel width of a digit in a given font / size (C#)

I am trying to calculate the pixel width of Excel columns, as described in this post, using the official formula from the OpenXML specification. However, in order to apply this formula, I need to know ...
3
votes
7answers
2k views

detect browser font size

Is it possible to detect browser font size? Also is it possible to dedect new font size when user changes the font size from menu selection? Many thanks for everybody help. Best regards.
2
votes
4answers
110 views

Select box truncating text when body font size changed via javascript on document ready in IE 9

IE 9 is behaving quite strangely for me. I've got a page font-size changing control that saves the users setting and then in the document ready sets the body font-size to that size. It works fine, ...
2
votes
0answers
32 views

Why 0.85em font size? [closed]

I've seen a lot of sites and especially the template project in MVC3 use 0.85em as their body font-size in the stylesheet. My question is why? Isn't setting the body font-size to 1em(16px) or ...
2
votes
1answer
24 views

FontSize set in Style does not match FontSize in Blend

I have a label in a grid and I apply a style to it from a resource dictionary. The style changes, among other things, the FontSize property of the label to 14. <Style x:Key="lblForm" ...
2
votes
3answers
53 views

Increasing the font-size of a link using :hover causes a flicker in Firefox. Why?

The issue in question can be found here: http://www.test.terribleobject.com/breathing-stillness/ The third link in the menu flickers when moused over. I assume it has to do with the line breaking ...
2
votes
3answers
105 views

Control font thickness without changing font size

I'm looking for a way to control the line thickness of text plotted in R without having the dimensions of the characters change. Here's an example (not using R): The middle word has a thickness of ...
2
votes
1answer
137 views

how to bind wpf combo box to all system font size

Is there any easy way (or no so easy ) to bind wpf combo box to all system font size? I would like to do this in the xaml.cs file rather than the straight XAML.
2
votes
3answers
78 views

What's a good maximum width of text on a webpage? [closed]

I have a fluid layout, but if the browser window is stretched too much, the text can get so wide that it's strange to read such long sentences on 1 line. What's a good maximum width for text? I ...
2
votes
2answers
144 views

problem with font-size using html and css

when i built my first all html/css website i used clickable images as a menu and every image and div scaled in % so it would adapt extremely well to all monitors and browsers, and it did. now on a ...
2
votes
1answer
168 views

Should I set the default font-size on the body or html tag?

I like to work in ems when creating websites. Therefore I set a default font-size of 100.01% on the body element. My question is should I set the default font-size on the body or the html element? ...
2
votes
3answers
206 views

Can I remove font-size declarations from document with Javascript?

I want to make a Chrome extension (so decent & documented Javascript) that removes ALL font-size declarations from a document. Document stylesheets: document.styleSheets Stylesheet rules: ...
2
votes
1answer
152 views

Shrinking font-size at a user types to fit in an input using Javascript

Apple's MobileMe uses javascript to change the font size in the email login on its homepage as the user types so that the text always fits in the available space without overflow scrolling. While I ...
2
votes
2answers
199 views

Specify fallback font sizes in CSS?

Is there any way to specify different font sizes for fallback fonts in CSS? I want to do something like this (which obviously does not work): div { font-family: "Arial Narrow", Arial, Helvetica, ...
2
votes
1answer
189 views

Getting the calculated font-size of a div

As we know, the font-size of a HTML-element is either set explicitly like style="font-size:10px" or calculated by the browser according to rules and properties from style sheets and parent properties. ...
2
votes
2answers
175 views

Website text larger and smaller

On my website, i want to have to buttons, one to make the text size on larger, and one to make it one smaller! Does anyone know how to do this. thanks
2
votes
2answers
572 views

jquery change font-size based on cookie?

I'm trying to create a text resizer, which also sets a cookie depending on what the user has chosen as the font-size for the website. It creates the cookie fine, but I can't seem to get it to resize ...
2
votes
1answer
133 views

Adjust font size depending on which font is used from a font stack

I'm using one of the new google api fonts for a heading on a site. It's Yannone Kaffeesatz and is quite a condensed typeface. My font stack is as follows: font-family: 'Yanone Kaffeesatz', ...
2
votes
3answers
83 views

What does font-size:larger do to a font that is 1em?

I'm updating a website that has a lot of sections with the CSS property font-size:larger. I'd like to replace this so that it is using EMs instead, because it is more explicit what the size will be. ...

1 2 3 4