我正在努力使我的文字 - 电视,电视节目,游戏响应。我该怎么办?我尝试过媒体查询,但我认为我弄错了。
<!DOCTYPE html>
<html>
<head>
<title>Papaya | Home</title>
<link href='https://fonts.googleapis.com/css?family=Luckiest+Guy' rel='stylesheet' type='text/css'>
<style type="text/css">
.bg {
width: 100%;
height: 110%;
position: absolute;
top: 0;
left: 0;
z-index: -4000;
}
body{
font-family: 'Luckiest Guy', cursive;}
a:hover {color: red;}
a { text-decoration: none; color:white; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:hover, a:active { text-decoration: none; }
#one {
position: fixed;
top:180px;
left:200px;
}
#two {
position: fixed;
top:180px;
left:570px;
}
#three {
position: fixed;
top:180px;
left:900px;
}
h1{font-size:70px}
}
</style>
</head>
<body >
<div id="one">
<h1><a href="movies.html" style="text-decoration:none">MOVIES</a></h1></div>
<div id="two">
<h1><a href="games.html" style="text-decoration:none">GAMES</a></h1></div>
<div id="three">
<h1><a href="tvshows.html" style="text-decoration:none">TV SHOWS</a></h1></div>
<div align="center"><img src="images/ball.jpg" class="bg" alt="LOADING.."></div>
</body>
</html>
&#13;
答案 0 :(得分:0)
首先,将HTML和CSS写入单独的文件中。它被认为是Web开发的最佳实践;)然后,为网站添加响应性的最佳方法是安装Bootstrap。 将其复制并粘贴到您的html文档的头部:
这是CDN(内容传送系统)链接。它将从其网站中提取引导功能,并允许您添加对您网站的响应。
以下是Bootstrap文档链接:
http://getbootstrap.com/getting-started/
我的回答似乎有点长而复杂,但事实并非如此。这就是专业人士和公司如今制作现代响应式网站的方式!希望这可以帮助。