我即将重新设计我的网站。在Body
css我放了背景img。当然,我为标题做了div class="header"
。
但是当我发布页面时,标题不显示。我尝试了几种浏览器和计算机,但没有什么可看的。 然后我试着打电话。在手机上它仅适用于纵向模式,但不适用于桌面上的横向模式。在iPad上也一样。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Home</title>
<style type="text/css">
* {padding: 0; margin: 0;}
body {background: url(http://farm4.staticflickr.com/3785/9603354598_e7a32b5505_o.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
.header {margin-top: 50px; width: 1400px; position:fixed; height: 70px; background-color:rgba(0,0,0,0.5); /* Fallback for web browsers that doesn't support RGBa */ background: rgb(0, 0, 0) transparent; /* RGBa with 0.6 opacity */ background: rgba(0, 0, 0, 0.6); /* For IE 5.5 - 7*/ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); /* For IE 8*/ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"; color: white; margin-top: 80%; }
.titles {opacity: 1; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-weight: 300;}
.title {margin-top: 10px; margin-left: 2%; font-size: 40px; font-family: Futura, "Trebuchet MS", Arial, sans-serif;}
.subtitle {margin-top: -12px; margin-left: 130px; font-size: 10px; font-family: Futura, "Trebuchet MS", Arial, sans-serif;}
</style>
</head>
<body>
<div class="header">
<div class="titles" align="left">
<div class="title">TITLE</div>
<div class="subtitle">subtitle</div>
</div>
</div>
</body>
</html>
知道问题出在哪里? 在我的代码应用程序中,页面工作正常。
谢谢!
答案 0 :(得分:0)
请删除标题css中的保证金顶部。我在下面的例子中对此进行了评论。请忽略我的红色边框,只是将其用作“调试”。
检查我的DEMO
.header {
margin-top: 50px;
width: 1400px;
position:fixed;
height: 70px;
background-color:rgba(0,0,0,0.5);
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0) transparent;
/* RGBa with 0.6 opacity */
background: rgba(0, 0, 0, 0.6);
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
/* For IE 8*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
color: white;
/* margin-top: 80%;*/
}