font-family Questions
1
Solved
Here's my problem:
In order to improve my SPEED mark on google speed insight, I had to switch from render-blocking google fonts to loaded locally google fonts.
So far so good except that I have a...
Evictee asked 12/4, 2019 at 16:55
3
Solved
In web development, a preferred list of font is put in font-family of CSS as following sample.
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", san...
Armin asked 16/3, 2019 at 14:23
1
I use this approach to set the locale when the user chooses a new language.
Also I use fonts in styles like this:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
&l...
Papillote asked 9/12, 2018 at 12:48
1
Solved
I have written html code for an login page in (app.component.html) and it's css in (app.component.css),I want to import/use Open sans,font-family. I am bit confused by seeing different answers in v...
Melaniamelanic asked 19/7, 2018 at 4:46
1
Solved
I have two lines of 10000 "." in a monospace font. The first has the whole line in a div, the second is made up of 1000 spans of 10 "."'s each. Here is the JS fiddle link: https://jsfiddle.net/fojp...
Metallic asked 11/7, 2018 at 21:13
3
Solved
Here is a sample CSS
h1 {
font-family: 'header-font', arial, sans-serif;
}
p {
font-family: 'paragraph-font', arial, serif;
}
Is it possible to load any remote Google Font (let say 'Lato') so...
Audun asked 10/1, 2013 at 13:55
4
Solved
My App crashes on android 26, my understanding is that it's caused by font-family and support library, but I can't figured out why.
On devices below Android 8.0 it work fine.
Caused by: android.v...
Parasitism asked 29/9, 2017 at 9:4
2
In my TVML app I am able to set font style properties such as font-size and font-weight using tv-text-style:none, however I am not able to set the font-family property, which seems to be ignored:
...
Sara asked 1/3, 2016 at 22:29
1
Solved
To avoid browser's cache, I want to concat version querystring to my @font-face's url. There are lots of urls. How to this in right way?
@font-face {
font-family: 'fontawesome';
src: url('/style...
Benefactress asked 19/1, 2017 at 13:27
1
I am using Google's Open Sans Font in my application.
I have defined the stylesheet as instructed:
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700'
rel='stylesheet' t...
Cruce asked 7/4, 2014 at 9:8
1
Solved
Starting in API 16, Jellybean Roboto was introduced as available font family to use. See whats "new" in Android 16 here.
Specifying android:fontFamily="sans-serif"(Roboto in API 16+) on a TextView...
Copulative asked 16/9, 2016 at 15:45
1
Solved
I would like to incorporate a custom font in my Rshiny App. I have a hunch the code would go in tags$style, but haven't the actual code to include this.
Example code:
ui <- fluidPage(
tags$s...
Fy asked 23/5, 2016 at 19:10
4
Solved
In the Chrome's developer pane, I can see these css settings of an element.
As far as I can see, every single font-family value is inherit.
How can I find what is the actual value of the font ...
Gurevich asked 14/7, 2013 at 7:35
2
I have a problem with a font I installed on my computer that I want to apply to HTML5 / CSS3.
How my question differs from its possible duplicate: it explicitely asks what to put in the .html file...
Helvetian asked 21/1, 2016 at 20:9
2
Solved
When HTML span has CSS font-family, I can't force it to use parent font-family
.Parent {
font-family: tahoma !important;
}
.Child {
font-family: cursive, geneva;
}
<div class="Par...
Fe asked 3/12, 2015 at 14:40
3
On Windows 10, the System.Drawing.FontFamily.IsStyleAvailable method seems to leave the allocated space into memory even after the Dispose method has been called.
I wrote a simple console applicat...
Cryptozoite asked 29/10, 2015 at 14:18
2
Solved
This is my complete test html:
<!DOCTYPE>
<html>
<head>
<title>DIV Font</title>
<style>
.my_text
{
font-family: Arial, Helvetica, sans-serif
font-size: ...
Halona asked 11/9, 2015 at 19:21
2
Solved
In my JavaFX application, the user will have the possibility to choose the font or font family for displaying the menus, labels, combo boxes, check boxes etc. Where can I find the different font fa...
Reidreidar asked 7/9, 2015 at 12:57
3
Solved
I remember hearing a long time ago that it was considered "best practice" to wrap quotes around font names that contain multiple words in the CSS font-family property, like this:
font-family: "Ari...
Apprehensive asked 3/10, 2011 at 17:57
1
I want to set sans-serif light as default font in my application. I'm working on Android Lollipop device. So, this is my styles.xml:
<resources>
<style name="AppBaseTheme" parent="andro...
Campney asked 26/11, 2014 at 19:19
2
Solved
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', arial...
Kirchhoff asked 7/11, 2010 at 16:54
5
I feel like a muppet for asking this but how can i get Futura Condensed Extra Bold to show up in CSS.
Before someone says it, yes I am aware that those Windows people out there wont be able to see ...
Amar asked 2/8, 2012 at 3:48
2
Is it possible to render a font using the font family in ImageMagick?
I have tried everything I can think of and nothing seems to work. I have done a lot of searching and I can't seem to find anyt...
Graiae asked 14/5, 2012 at 3:26
3
Since Arial black is buggy in firefox, is there a way to show it without embedding it with @font-face?
https://bugzilla.mozilla.org/show_bug.cgi?id=644385
I've seen a couple of work arounds like...
Elfie asked 8/8, 2012 at 9:26
2
Solved
I have used the style like this in my .css file but it is not working. What can I do to make my code work?
font-family: Lato, Helvetica, sans-serif;
link: http://www.google.com/fonts/specime...
Mae asked 6/2, 2014 at 7:38
© 2022 - 2024 — McMap. All rights reserved.