font-family Questions
1
Solved
I just discovered that my Chrome will treat font-family: "sans-serif" and font-family: sans-serif differently (it will choose different fonts). Can anyone explain how this works? I can't find any c...
Lavish asked 20/12, 2013 at 18:30
1
Solved
I have this code:
labels_params = {"labels":{n: "" if n[0] == "." else n for n in G.nodes () },
"font_family":"sans-serif",
"alpha":.5,
"font_size":16 }
draw_networkx_labels (G, pos, **label...
Bluefish asked 25/11, 2013 at 1:26
1
Solved
I'm very curious what font iOS actually chooses when setting font-family: sans-serif. I can't seem to find the answer anywhere, so I'm asking here.
body {
font-family: sans-serif; /* What font wi...
Panettone asked 20/11, 2013 at 9:49
1
Solved
I would like to use a font like on the following picture.
http://i.minus.com/ibinuNBMiT8CSk.jpg
This font is Courier regular. But as soon as I try to use it on a webpage it is smooth.
font-fam...
Lexicographer asked 4/11, 2013 at 10:29
3
Solved
In my iOS app I use custom fonts, dynamically loaded from files.
To use them in code, I need to know loaded fonts' families. So, is there any way to do it?
UPDATE:
I can't somehow hardcode font ...
Mediatize asked 12/2, 2013 at 3:18
4
Solved
I have an input box, and people type a font in and it saves what they type as a JPEG. All works fine. But when they type a font name like 'times new roman' it has to be capitalised properly to 'Tim...
Jordain asked 17/3, 2011 at 17:19
2
Solved
For my webpage, I chose a font that works well for all the letters. However, for all numbers I'd like to use a different font.
Is there a way that I can set a CSS rule to target all the numbers o...
Merino asked 28/11, 2012 at 17:54
2
Solved
I'm styling the pre HTML element via CSS like this:
pre {
font-family : "Franklin Gothic Medium","Arial Narrow Bold","Arial",sans-serif;
}
And it works in Chrome/Chromium, Opera, Safari and IE ...
Tramp asked 9/8, 2012 at 6:45
1
Solved
I tried to install and use a font in my WPF application, but all I get is like this:
Here is the code I tried to use the font:
richtext1.FontFamily = "SH_Roq'a";
The expected result is: ( snap...
Balzac asked 12/6, 2012 at 14:27
6
Solved
I was using the Wingdings font in the CSS for some symbols like a pencil and a home icon.
It worked on IE, Chrome and Safari but not in Firefox and Opera. I googled it but did not find any better...
Fagaly asked 22/10, 2011 at 20:59
1
Solved
I recently came across the @font-family CSS rule as I was looking to use web fonts on my website.
Coming to the point, I've seen two variants in @font-family CSS code, which you can see below:
@f...
Macpherson asked 28/4, 2012 at 14:35
1
Solved
No, like others, I don't want to use custom fonts. I am looking for list of WebView safe fonts that can be used without using CSS3's custom @font-face, which loads ttf/wof/eot font from web/local s...
Portraiture asked 9/11, 2011 at 20:26
5
Solved
I have a HTML page which includes some text and formatting. I want to make it have the same font-family and the same text-size ignoring all inner formatting of text.
I want to set a global font fo...
Divestiture asked 11/8, 2011 at 12:21
8
Solved
In CSS, I usually go with the usual
font-family: Arial, Helvetica, sans-serif;
For a little change, I'm going for a font that looks like handwriting. Can some of the expert CSS folks here suggest ...
Nth asked 30/4, 2010 at 20:49
2
Solved
How does the font-family property work in CSS? Why is more than one font used? Isn't only one font used at a time by the browser?
Endoergic asked 20/2, 2011 at 7:43
2
Solved
How can I set the FontFamily and FontSize for the application in App.xaml?
Atrophy asked 21/9, 2009 at 8:26
2
Solved
I have a custom template for an expander that is close to the code below. I had to change some of the code to take out custom classes, brushes, etc..
<Style TargetType="{x:Type Expander}">
...
Lighterage asked 30/12, 2008 at 21:41
2
I have a style applied to all my textboxes, defined in a resource dictionary..
<Style TargetType="TextBlock">
<Setter Property="TextBlock.FontSize" Value="{Binding Source={StaticResource...
Rebane asked 26/3, 2010 at 16:22
1
I'm currently working on a little font organization/preview application for myself, however, I'm having a hard time getting the exact information I need.
I've found that I can load an external fon...
Manon asked 27/10, 2009 at 1:13
4
Solved
My code:
body {
font-family:"Verdana",Arial,Helvetica,sans-serif;
}
.myfont {
font-family:"Verdana",Arial,Helvetica,sans-serif;
}
<body>
Hello
<select>
<option>...
Kell asked 5/1, 2009 at 12:51
© 2022 - 2024 — McMap. All rights reserved.