gpt4 book ai didi

html - 使用@font-family 的 Lato 字体未出现

转载 作者:行者123 更新时间:2023-11-28 15:18:04 25 4
gpt4 key购买 nike

我正在尝试在我的 html/css 中使用 Lato Regular 字体。问题是,每当我加载 html 文件时,它都会显示常规字体(在 blahblahblah 中)。我检查了那个元素,它检测到字体系列应该是“LatoWeb”。但是,LatoWeb 显示常规系统字体。我在 Linux Firefox 中运行这个 btw

这是我的HTML代码(html代码保存在app/views/static_pages下)

<!DOCTYPE html>
<html>
<head>
<title>UPrint</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<link rel="stylesheet" type="text/css" href="../../assets/stylesheets/Semantic-UI-CSS-master/semantic.min.css">
<script type="text/javascript" src="../../assets/stylesheets/Semantic-UI-CSS-master/semantic.min.js"></script>
<link rel="stylesheet" type="text/css" href="../../assets/stylesheets/landing.css">
<link rel="stylesheet" type="text/css" href="../../assets/stylesheets/latostyle.css">
</head>
<body>
<div class="landing-page-description">
<img class="ui centered medium image" src="../../assets/images/logo.png">
<p class="regular"> blah blah blah</p>
</div>
</body>
</html>

这是我的css代码文件名landing.css(css代码保存在app/assets/stylesheets下)(字体保存在app/assets/fonts)

@font-face {
font-family: 'LatoWeb';
src: url('../fonts/Lato-Regular.eot'); /* IE9 Compat Modes */
src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
url('../fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/Lato-Regular.ttf') format('truetype');
font-style: normal;
font-weight: normal;
text-rendering: optimizeLegibility;
}


body {
background-color: #3fabad;
}

.landing-page-description {
position: relative;
}

.regular {
font-family: 'LatoWeb';
}

最佳答案

请尝试 !important。我不确定它是否有效。但你应该试试。因为默认字体会覆盖我们自己的字体。

关于html - 使用@font-family 的 Lato 字体未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40020443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com