定义
个性化网页内容的说
元素属性
- media:指定媒体
- scoped:作用范围
- type:指定样式类型
media
可用于限制在什么媒体操作网页的情况下才对网页进行“美化”(可以这么说的吧hh)
使用案例
<!DOCTYPE html>
<html>
<head>
<title>学习html第二天</title>
<meta charset=" htf-8">
<meta name="keywords" content="html,初学,第二天">
<meta name=" description" content="学习html的示例喔">
<style>
body {
background-image: url(https://api.mengdian.top/loli/ceshi.png)
}
h1 {
text-align: center;
color: black;
}
</style>
</head>
<body>
<h1>什么东西</h1>
<a href="https://www.iqxqi.top/" target="_blank">iqxqi</a>
<p>啧啧啧</p>
</body>
</html>
Comments NOTHING