作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须在一个 Rails 应用程序中使用 Google 的字体。普通的 HTML 代码定义 googlefonts 用法如下:
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
#googlefonts.css.scss
@font-face {
font-family: 'PT Sans';
font-style: italic;
font-weight: 400;
src: local('PT Sans Italic'), local('PTSans-Italic'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v4/xxxx.woff) format('woff');
#application.css
*= require googlefonts
*= require_tree .
#styles.css.scss
body{
font-family: "PT Sans", Arial, Helvetica, sans-serif;
font-size:13px;
line-height:25px;
text-shadow:none !important;
color:#444;
}
最佳答案
使用您的示例代码,以下对我来说很好用:
# stick this inside the head section of application.html.erb
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
# stick this in your css file:
body{
font-family: "PT Sans", Arial, Helvetica, sans-serif;
}
关于ruby-on-rails - 在 Ruby on Rails 3.2 应用程序中集成 googlefonts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13789853/
我通过 css“@import”在我的网页上包含“Noto Sans”或“Ubuntu”。如果我将我页面上的呈现与 GoogleFonts 页面上的呈现进行比较,两种字体看起来都不一样。即使我将相同的
我正在使用一种名为 DejaVuSans 的字体,它具有不同的样式(普通、粗体、斜体……),我正在使用其中一些样式使用 multiply font-face @font-face { font
我在我的 flutter 应用程序中使用 GoogleFonts api,但现在我正在将每个文本的 fontStyle 手动设置为 GoogleFonts.roberto,但我想在 main.dart
我必须在一个 Rails 应用程序中使用 Google 的字体。普通的 HTML 代码定义 googlefonts 用法如下: 我试图在我的 alapplication.html.erb 中添加相同
我是一名优秀的程序员,十分优秀!