第1个回答 2019-03-10
第一种:外部调用
<html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=utf-8"
/>
<link
rel="stylesheet"
type="text/css"
href="index.css"
media="screen"
/>
</head>
<body>
</body>
</html>
第二种:(不会怎样叫,嵌套?)
<html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=utf-8"
/>
<style
type="text/css">
<!--
.css_1
{
font-size:
9px;
font-style:
italic;
}
-->
</style>
</head>
<body>
</body>
</html>
第三种:在标签里直接写
<html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=utf-8"
/>
</head>
<body>
<input
type="text"
name="username"
id="username"
maxlength="36"
style="width:150px"/
>
</body>
</html>
粗体的地方就是调用CSS的了。不明白追问。