font-size:20px;要和<h1></h1>连着用吗
font-size:20px;要和<h1></h1>连着用吗,要一起用才有效果吗
font-size:20px;要和<h1></h1>连着用吗,要一起用才有效果吗
2016-04-20
font-size:20px;是在<head></head>标签中用的,
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
h1{
font-size:20px;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
如果要在<body></body>中用,必须是div里面才可以
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
</style>
</head>
<body>
<div id="h1" style="font-size:20px;">
<h1>Hello World!</h1>
</div>
</body>
举报