|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
<!DOCTYPE HTML>
<html>
<head>
<title>first website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="keywords" content="webdevo,html5,css3">
<meta name="author" content="chenqi">
<style>
body{
background-image:url("bg2.jpg")
}
h1 {
color :black;
}
p {
color :blue;
}
</style>
<style media="screen and (min-width:202px) and (max-width:404px)">
body{
backgroud-image:url("bg.png")
}
</style>
</head>
<body>
<h1> first </h1>
<p>this is my first website</p>
</body>
</html>
1、鱼油通过:
- <style media="screen and (min-width:202px) and (max-width:404px)"></style>
复制代码
目标实现自适应,但是background拼写错了哦:
|
|