CSS:正文中的字体系列不适用于页面上的任何内容
Posted
技术标签:
【中文标题】CSS:正文中的字体系列不适用于页面上的任何内容【英文标题】:CSS: font-family in body doesn't apply to ANY content on page 【发布时间】:2016-04-26 06:47:45 【问题描述】:我在正文中添加了一个谷歌字体字体系列,但它似乎并没有改变一切。 问题是当我单独放置“font-family:'Quicksand',sans-serif;”时在每个 css 大括号(标题、jumbotron 等)中都会出现新字体。
那么有人可以解释一下为什么我的页面没有选择正文字体系列吗?这真的让我很沮丧。 谢谢
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Quicksand:400,300' rel='stylesheet' type='text/css'>
<link href="css/styles.css" type="text/css" rel="stylesheet"/>
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<body>
<main>
<header>
<div class="row">
<div class="col-lg-6 col-sm-1 col-xs-4">
<img class="logo" src="" >
</div>
<div class="col-lg-6 col-sm-11 col-xs-8 title">
<h1>Testing</h1>
<h4>Front-End Ninja</h4>
</div>
</div>
</header>
<hr id="line">
<section>
<div class="jumbotron">
<div class="container">
<h1>Hello, world!</h1>
<p>...</p>
</div>
</div>
</section>
<hr id="line">
<section id="showcase">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." >
<div class="caption">
<h3>Appify</h3>
<p>...</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." >
<div class="caption">
<h3>Title Two</h3>
<p>...</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="../images/DeathtoStock_Wired7.jpg" >
<div class="caption">
<h3>Title Three</h3>
<p>...</p>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>
style.css
html, body
padding: 0;
margin: 20px;
font-family: 'Quicksand', sans-serif;
header
padding: 30px;
.logo
height:100px;
width:100px;
border: 5px solid #f8981c;
border-radius: 100px;
.title
text-transform: uppercase;
text-align:right;
font-weight: 900;
margin: ;
padding: 0;
#line
border:0px;
height:4px;
width:95%;
background:#BCBBBB;
.jumbotron
background: url(../images/DeathtoStock_Wired7.jpg) center center no-repeat;
background-size: cover;
height: 500px;
margin: auto;
.thumbnail
text-transform: uppercase;
【问题讨论】:
【参考方案1】:将您的 styles.css
放在 bootstrap.css
链接之后,因为引导程序在正文上定义了覆盖您的字体系列
【讨论】:
以上是关于CSS:正文中的字体系列不适用于页面上的任何内容的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 自动完成功能不适用于 html 页面上的 javascript/css