样式 ‹style›

Exisi 2020-06-01 12:52:22
Categories: Tags:



属性

描述

type

text/css

规定样式表的 MIME 类型。

media

  • screen
  • tty
  • tv
  • projection
  • handheld
  • print
  • braille
  • aural
  • all

为样式表规定不同的媒介类型。

实例

<!DOCTYPE html>

<html lang="en">

<head>

<title>网页的标题</title>

 

<style>

h1 {

color:red

}

</style>

</head>

 

<body>

<h1>这是一个红色的标题</h1>

</body>

 

</html>

 

 

来自 <https://www.w3school.com.cn/tags/tag_style.asp>