在网页中插入css,有如下3种方式

CSS saves a lot of works

1:内联样式表 inline

<body style=”color:red “> suming </body>

 

2:内部样式表 internal

在<head> css </head>内增加css

<head>

<style type=”text/css “>

 

</style>

</head>

 

3:外部样式表 external style sheet

链接到外部的css文件

<head>

<link rel=”stylesheet” type=”text/css” href=”url.css”>

</head>

 

he file should not contain any html tags.

相关文章:

  • 2022-12-23
  • 2021-12-22
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2021-08-29
猜你喜欢
  • 2021-11-24
  • 2021-11-29
  • 2022-01-13
  • 2022-12-23
  • 2022-02-15
  • 2022-02-13
相关资源
相似解决方案