- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是HTML编程的新手,所以请在这里忍受。为什么嵌入式管视频不显示?我在这里想念什么吗?我还包括CSS文件,以备不时之需。
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Mysteries</title>
<meta charset="utf-8">
</head>
<html>
<body class="index">
<div id="header_box">
<h4 class="logo">MYSTERIES<span class="orange2">/</span>PARANORMAL</h4>
<a href="index2.html" id="content_link">CONTENT</a>
</div>
<div id="footer">
<h4><OKLAH/WEBSOFT> 2015 All Rights Reserved.</h4>
<div>
<iframe width="560" height="315" src="https://www.youtube.com/embed /Gas8f7dJfWc?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</body>
</html>
Here is the CSS Code for the webpage, please keep in mind im new to all this, so i might have some css errors in there
#header_box {
z-index: 1;
position: fixed;
background-color: rgba(255,255,255,0.25);
border: 1px solid #FFF;
width: 100%;
height: 22px;
left: -2px;
padding: 1em 1.5em;
padding-top: 1em;
padding-right: 1.5em;
padding-bottom: 1em;
padding-left: 1.5em;
top: 0px;
}
.index {
background: #000;
}
.logo {
color: white;
font-family: Verdana;
font-weight: 300px;
float: left;
padding-top: 0px;
margin-top: 0px;
font-size: 16px;
}
}
.orange2 {
color: #FF6600;
}
.orange {
color: #FF6600;
}
.h2 {
color: #FFF;
text-align: center;
padding-top: 10px;
font-family: ISOCT;
letter-spacing: 0.1em;
text-transform: uppercase;
}
img {
float: center;
width: 55px;
height: 50px;
padding-top: 70px;
display: block;
margin: auto;
}
p {
color: #FFF;
text-align: center;
font-family: ISOCT;
font-size: 20px;
}
#paranormal_cont {
color: #FFF;
font-family: Verdana;
float: right;
text-decoration: none;
margin-right: 20px;
}
#paranormal_cont:hover{
border: 1px;
border-style: dotted;
font-weight: bold;
color: #FF6600;
}
#content_link {
color: #FFF;
font-family: Verdana;
float: right;
text-decoration: none;
margin-right: 50px;
}
#content_link:hover {
border: 1px;
border-style: dotted;
font-weight: bold;
color: #FF6600;
}
#footer {
position: fixed;
bottom: 0px;
margin: 0;
padding: 0;
left: 0;
right: 0;
background-color: rgba(255,255,255,0.25);
border: 1px solid #FFF;
width: 100%;
height: 40px;
left: -1px;
}
#footer h4 {
position: relative;
text-align: left;
color: #FFF;
font-family: Verdana;
font-size: 14px;
font-weight: 300px;
margin-left: 10px;
margin-top: 10px;}
最佳答案
问题是您忘了关闭页脚div。这就是为什么您没有看到iframe的原因。
另外,出于完整性考虑,提及它“更改链接,使其没有空格”,尽管您已经排除了它的问题,因为您说过
actually there is no space in the original code, so the link is ok, what else could it be?
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Mysteries</title>
<meta charset="utf-8">
</head>
<html>
<body class="index">
<div id="header_box">
<h4 class="logo">MYSTERIES<span class="orange2">/</span>PARANORMAL</h4>
<a href="index2.html" id="content_link">CONTENT</a>
</div>
<div id="footer">
<h4><OKLAH/WEBSOFT> 2015 All Rights Reserved.</h4>
</div> <!-- You forgot to close this div -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/Gas8f7dJfWc?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</body>
</html>
关于html - 我正在尝试将youtube视频嵌入我的网页中,但根本不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33422551/
我遇到了一个似乎很独特的问题。我的 NSUbiquitousKeyValueStore 在模拟器中的启动之间根本不起作用。也就是说,我什至不是在谈论 iCloud 同步或类似的东西,我无法让它通过下面
首先,我使用的是 WiX 版本 3.5.2519.0,但我也在最新的 3.6 版本上测试了它,结果相同。 我很难确定 PatchFamily 究竟能过滤掉 torch 生成的差异的某些部分。按照手册中
我可以获取要呈现的“帮助主题”标题,但无法获取我定义的任何FIXTURES。 {{#each model}} 中的任何内容都不会渲染。这是我第一次使用 Ember,所以任何东西(字面意义上的任何东
我一直在尝试设置custom ajaxTransports for jQuery在我们的产品的某些场景下缩短某些工作流程。然而,我在让这些传输受到尊重方面取得了零成功(而我有很多工作 custom a
为什么纯无类型 lambda 演算经常被描述为无法使用? 有了合适的函数库,它会不会与任何其他函数式语言大致相同? 最佳答案 速度不是大问题。例如,您可以决定使用教堂数字但优化实现,以便像往常一样表示
我是一名优秀的程序员,十分优秀!