- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在 build 一个网站,因为我已经完成了标题标签,所以我应用了position:fixed;它是如何破坏我的标题的,我不知道为什么,因为我尝试在 css 中调试整个标题标签。
任何帮助将不胜感激:
$(document).ready(function(){
$('#login-trigger').click(function(){
$(this).next('#login-content').slideToggle();
$(this).toggleClass('active');
if ($(this).hasClass('active')) $(this).find('span').html('▲')
else $(this).find('span').html('▼')
})
});
function f_p(){
document.getElementById('forgot_pwd').style.display='block';
document.getElementById('userlogin').style.display='none';
}
function p_f(){
document.getElementById('forgot_pwd').style.display='none';
document.getElementById('userlogin').style.display='block';
}
@charset "utf-8";
/* CSS Document */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
fieldset{margin: 0;padding: 0;border: 0;}
input:focus,textarea:focus {outline: none;}
/*----------------------*/
body{background: #000; font-family: Arial, Helvetica, sans-serif;color: #444;margin: 0;font-size: 1.2em;}
#logo{border: none; float: left;height: 50px;margin: -5px 5px 0px 0px;width: 130px;}
#navmenu {color: #FFF;font-size:18px;list-style: outside none none;margin: 20px 5px 5px 5px;text-decoration: none;}
input.searchbox {-webkit-border-radius: 10px;-moz-border-radius: 10px;background-color: #af5354;border: 1px solid #af5354;background-color: #AF5354;border: 1px solid #AF5354;border-radius: 5px;color: #FFF;float: left;height: 19px;margin-left: 0.5em;margin-top: 1.3em;outline: 0px none;padding-left: 0.5em;padding-top: 0.3em;text-align: left;width: 170px;}
input.searchbox:focus {background: #e87476;background: -moz-linear-gradient(top, #e87476 0%, #e87476 20%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e87476), color-stop(20%, #e87476)); outline: 0;color: #FFF;}
*::-webkit-input-placeholder { color: #FFF; }
*:-moz-placeholder { color: #FFF; }
*::-moz-placeholder { color: #FFF; }
*:-ms-input-placeholder { color: #FFF; }
input.button {padding: 0px;margin: 15px 0px 0px -28px;width: 38px;height: 28px;border: 0;float: left;border: none;background: url("../../assets/images/sprite.png") -142px -7px;overflow: hidden;}
input.button:hover {border: 0;padding: 0;margin: 15px 0px 0px -28px;width: 38px;height: 28px;background: url("../../assets/images/sprite.png") -142px -47px;float: left;border: none;}
input[type=search] { -webkit-appearance: none; }
#navmenu a{color:#FFF;text-decoration:none;}
#navmenu a:hover {text-decoration:none;}
/*----------------------*/
.cf:before, .cf:after {content:"";display:table;}
.cf:after {clear:both;}
.cf {zoom:1;}
/*----------------------*/
header {
padding: 8px 10%;
background-color: #8C080A;
background-image: -webkit-gradient(linear, left top, left bottom, from(#a8090c), to(#8c080a));
background-image: -webkit-linear-gradient(top, #a8090c, #8c080a);
background-image: -moz-linear-gradient(top, #a8090c, #8c080a);
background-image: -ms-linear-gradient(top, #a8090c, #8c080a);
background-image: -o-linear-gradient(top, #a8090c, #8c080a);
background-image: linear-gradient(top, #a8090c, #8c080a);
-moz-box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
-webkit-box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
height: 50px;
}
/*----------------------*/
nav {font-size: 16px;font-weight: bold;margin-left: auto;margin-right: auto;width: 1024px; }
nav ul {margin: 20px 0px 0px;padding: 0;list-style: none;position: relative;float: right;background: from(#a8090c), to(#8c080a);-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}
nav li {float: left;}
nav #login { border-right: 1px solid #fff;-moz-box-shadow: 1px 0 0 #fff;-webkit-box-shadow: 1px 0 0 #fff;box-shadow: 1px 0 0 #fff; }
nav #login-trigger, nav #signup a { display: inline-block; *display: inline; *zoom: 1; height: 25px; line-height: 25px; font-weight: bold; padding: 0 8px; text-decoration: none; color: #FFF; }
nav #signup a { -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; }
nav #login-trigger { -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; }
nav #login-trigger:hover, nav #login .active, nav #signup a:hover { background: from(#a8090c), to(#8c080a); }
nav #login-content {
display: none;
position: absolute;
top: 35px;
right: 0;
z-index: 999;
background: #444343;
background-image: -webkit-gradient(linear, left top, left bottom, from(#444343), to(#444343));
background-image: -webkit-linear-gradient(top, #444343, #444343);
background-image: -moz-linear-gradient(top, #444343, #444343);
background-image: -ms-linear-gradient(top, #444343, #444343);
background-image: -o-linear-gradient(top, #444343, #444343);
background-image: linear-gradient(top, #444343, #444343);
padding: 15px;
-moz-box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
-webkit-box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
-moz-border-radius: 3px 0 3px 3px;
-webkit-border-radius: 3px 0 3px 3px;
border-radius: 3px 0 3px 3px;
}
nav li #login-content {
right: 0;
width: 250px;
}
/*--------------------*/
#inputs input {
background: #7c7c7c;
padding: 6px 5px;
margin: 0 0 5px 0;
width: 238px;
border: 1px solid #ccc;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 1px #ccc inset;
-webkit-box-shadow: 0 1px 1px #ccc inset;
box-shadow: 0 1px 1px #ccc inset;
color: #FFF;
}
#inputs input:focus {
background-color: #7c7c7c;
border-color: #e8c291;
outline: none;
-moz-box-shadow: 0 0 0 1px #e8c291 inset;
-webkit-box-shadow: 0 0 0 1px #e8c291 inset;
box-shadow: 0 0 0 1px #e8c291 inset;
}
#inputs input {
background: #7c7c7c;
padding: 6px 5px;
margin: 0 0 5px 0;
width: 238px;
border: 1px solid #ccc;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 1px #ccc inset;
-webkit-box-shadow: 0 1px 1px #ccc inset;
box-shadow: 0 1px 1px #ccc inset;
color: #FFF;
}
#inputs input:focus {
background-color: #7c7c7c;
border-color: #e8c291;
outline: none;
-moz-box-shadow: 0 0 0 1px #e8c291 inset;
-webkit-box-shadow: 0 0 0 1px #e8c291 inset;
box-shadow: 0 0 0 1px #e8c291 inset;
}
/*--------------------*/
#login #actions {
margin: 10px 0 0 0;
}
/* ----- START ----- LOGIN BUTTON ----- START -----*/
#login #submit {
background-color: #d14545;
background-image: -webkit-gradient(linear, left top, left bottom, from(#e97171), to(#d14545));
background-image: -webkit-linear-gradient(top, #e97171, #d14545);
background-image: -moz-linear-gradient(top, #e97171, #d14545);
background-image: -ms-linear-gradient(top, #e97171, #d14545);
background-image: -o-linear-gradient(top, #e97171, #d14545);
background-image: linear-gradient(top, #e97171, #d14545);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-shadow: 0 1px 0 rgba(0,0,0,.5);
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
border: 1px solid #7e1515;
float: left;
height: 30px;
padding: 0;
width: 100px;
cursor: pointer;
font: bold 14px Arial, Helvetica;
color: #fff;
margin-right: 3px;
}
#login #submit:hover,
#login #submit:focus {
background-color: #e97171;
background-image: -webkit-gradient(linear, left top, left bottom, from(#d14545), to(#e97171));
background-image: -webkit-linear-gradient(top, #d14545, #e97171);
background-image: -moz-linear-gradient(top, #d14545, #e97171);
background-image: -ms-linear-gradient(top, #d14545, #e97171);
background-image: -o-linear-gradient(top, #d14545, #e97171);
background-image: linear-gradient(top, #d14545, #e97171);
}
#login #submit:active {
outline: none;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
#login #submit::-moz-focus-inner {
border: none;
}
/* ----- END ----- LOGIN BUTTON ----- END -----*/
/* ----- START ----- FORGOT BUTTON ----- START -----*/
#login #forgot {
background-color: #d14545;
background-image: -webkit-gradient(linear, left top, left bottom, from(#e97171), to(#d14545));
background-image: -webkit-linear-gradient(top, #e97171, #d14545);
background-image: -moz-linear-gradient(top, #e97171, #d14545);
background-image: -ms-linear-gradient(top, #e97171, #d14545);
background-image: -o-linear-gradient(top, #e97171, #d14545);
background-image: linear-gradient(top, #e97171, #d14545);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-shadow: 0 1px 0 rgba(0,0,0,.5);
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
border: 1px solid #7e1515;
float: left;
height: 30px;
padding: 0;
width: 144px;
cursor: pointer;
font: bold 14px Arial, Helvetica;
color: #fff;
margin-left: 3px;
}
#login #forgot:hover,
#login #forgot:focus {
background-color: #e97171;
background-image: -webkit-gradient(linear, left top, left bottom, from(#d14545), to(#e97171));
background-image: -webkit-linear-gradient(top, #d14545, #e97171);
background-image: -moz-linear-gradient(top, #d14545, #e97171);
background-image: -ms-linear-gradient(top, #d14545, #e97171);
background-image: -o-linear-gradient(top, #d14545, #e97171);
background-image: linear-gradient(top, #d14545, #e97171);
}
#login #forgot:active {
outline: none;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
#login #forgot::-moz-focus-inner {
border: none;
}
/* ----- END ----- FORGOT BUTTON ----- END -----*/
/* ----- START ----- FORGOT BUTTON ----- START -----*/
#login #passwordbtn {
background-color: #d14545;
background-image: -webkit-gradient(linear, left top, left bottom, from(#e97171), to(#d14545));
background-image: -webkit-linear-gradient(top, #e97171, #d14545);
background-image: -moz-linear-gradient(top, #e97171, #d14545);
background-image: -ms-linear-gradient(top, #e97171, #d14545);
background-image: -o-linear-gradient(top, #e97171, #d14545);
background-image: linear-gradient(top, #e97171, #d14545);
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-shadow: 0 1px 0 rgba(0,0,0,.5);
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
border: 1px solid #7e1515;
float: left;
height: 30px;
padding: 0;
width: 144px;
cursor: pointer;
font: bold 14px Arial, Helvetica;
color: #fff;
margin-right: 3px;
}
#login #passwordbtn:hover,
#login #passwordbtn:focus {
background-color: #e97171;
background-image: -webkit-gradient(linear, left top, left bottom, from(#d14545), to(#e97171));
background-image: -webkit-linear-gradient(top, #d14545, #e97171);
background-image: -moz-linear-gradient(top, #d14545, #e97171);
background-image: -ms-linear-gradient(top, #d14545, #e97171);
background-image: -o-linear-gradient(top, #d14545, #e97171);
background-image: linear-gradient(top, #d14545, #e97171);
}
#login #passwordbtn:active {
outline: none;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
#login #passwordbtn::-moz-focus-inner {
border: none;
}
/* ----- END ----- FORGOT BUTTON ----- END -----*/
#login label {
color: #fff;
float: left;
line-height: 30px;
}
#login label input {
position: relative;
top: 2px;
right: 2px;
}
/*--------------------*/
#about {
margin: 15px;
}
#about a {
color: #555;
}
.content { background: #000; height: 2000px; margin: 0px auto; width: 1024px; border: solid 1px white; }
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Spout TV</title>
<link rel=stylesheet type="text/css" href="scripts/css/spouttv.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="scripts/js/login.js"></script>
<script src="scripts/js/functions.js"></script>
</head>
<body>
<header>
<nav>
<a href="http://www.spouttv.com/"><img src="assets/images/logo.png" id="logo" alt="Spout TV"></a>
<li id="navmenu"><a href="#">TV Shows</a></li>
<li id="navmenu"><a href="#">Movies</a></li>
<li id="navmenu"><a href="#">Documentaries</a></li>
<li id="navmenu"><a href="#">Kids Shows</a></li>
<li id="navmenu"><a href="#">Favourites</a></li>
<form id=header-search>
<input class=searchbox placeholder="Search Spout TV">
<input type=submit class=button value=""/>
</form>
<ul>
<li id="login">
<a id="login-trigger" href="#">
Log in <span>▼</span>
</a>
<div id="login-content">
<form id='userlogin' role="search" method="get" class="input-group" action="login.php" onSubmit="dologin(document.getElementById('user').value, document.getElementById('pass').value); return false;">
<fieldset id="inputs">
<label>Email:</label>
<input id="username" type="email" name="Email" placeholder="Your Email address" required>
<label>Password:</label>
<input id="password" type="password" name="Password" placeholder="Password" required>
</fieldset>
<fieldset id="actions">
<input type="submit" id="submit" value="Log in"><input type="button" onClick="f_p();" id="forgot" value="Forgot Password">
<label><input type="checkbox" checked="checked"> Keep me signed in</label>
</fieldset>
</form>
<form method='post' style='display:none;' name='forgot_pwd' id='forgot_pwd' action='forgot_password.php'>
<fieldset id="inputs">
<label>Enter Email address:</label>
<input id="username" type="email" name="Email" placeholder="Your Email address" required>
</fieldset>
<fieldset id="actions">
<input type="submit" id="passwordbtn" name="for_pwd" value="Send Password" />
<input type="button" onclick='p_f();' id="submit" value='Back'/>
</fieldset>
</form>
</div>
</li>
<li id="signup">
<a href="registration.html">Sign Up</a>
</li>
</ul>
</nav>
</header>
<div class="clear"></div>
<div class="content">
<p id="about">Back to <a href="/simple-and-effective-dropdown-login-box">article</a> / Drop me a message on <a href="http://twitter.com/catalinred">Twitter</a>!</p>
</div>
</body>
</html>
最佳答案
您可以使用
粘贴标题此处示例:http://jsfiddle.net/vey2ea1t/
header {
position: fixed;
}
几条评论后编辑:
请使用:
<header style="position: fixed !important; width: 100%;">
并从标签 nav
中删除此 css:
margin-left: auto;
关于css - 固定位置有问题。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28537353/
我正在尝试实现 3 列固定-流体-固定布局。此外,布局的高度必须占据整个屏幕,使其看起来像从上到下的 3 个实心列。 总结: Left-column: fixed-width Center-col
我在网上搜索过,似乎找不到一个干净、简单、所有浏览器都友好的 3 列布局。 我希望有 3 列布局,左列固定为 200px,右列固定为 200px,中间列为剩余宽度,但最小宽度为 600px。所以整体最
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this q
我正在使用一些音频指纹技术来标记长录音中的歌曲。例如,在广播节目中的记录。指纹机制工作正常,但我在归一化(或下采样)方面遇到问题。 在这里您可以看到两首相同的歌曲,但波形不同。我知道我应该进行一些直流
为什么使用cout调用setprecision和fixed以及其他iomanip函数不像例如name.find('')plz这样的字符串函数 最佳答案 它们允许您以以下方式链接操作: cout <<
我正在尝试创建一个侧边栏,当用户向下滚动页面时,该侧边栏会跟随用户,并且我设法使用以下代码实现了效果: 标记 Javas
我正在尝试设置一些性能分析以及影响缓冲策略的运行时决策。我的应用程序收到一个指向由库(CUDA 或 OpenCL)分配的缓冲区的指针。 如何测试内存区域是否被页面锁定? 据我所知,POSIX 给了我们
我正在用 C# 编写一个 B+ 树实现,我为我的应用程序选择的树实现有一个非常特定的结构,它是缓存敏感的。为了实现这些属性,它对树节点有严格的布局策略。 我想要的只是使用 C# 的 fixed 来表达
我试图通过将 fragment 注入(inject)容器来在每个屏幕的底部放置一个广告 View 。通过使用 LinearLayout,我可以将 adview 置于操作栏下方的顶部。我已经尝试了 Re
我正在尝试创建一个导航稍微复杂的网站。我已经让导航看起来像我想要的初始加载,但现在我试图让它粘性导航到滚动顶部。我已经能够在导航栏到达顶部时创建一个类,但无法使其粘滞。每次我添加一个位置时,它都会跳回
首先,我正在寻找一个纯 CSS 解决方案。我可以使用 JavaScript 非常轻松地做到这一点,所以不要费心给我提示如何在 JS 中做到这一点。 我有一个包含 3 个容器的网页。其中 2 个是固定的
我猜这里有一种 super 特例。 我正在处理许多包含。现在我正在一个包含的内容文件中编码。我需要一个灯箱,它有一个 20% 的黑色背景覆盖整个页面,包括本身固定的标题,并在先前的 PHP 文件中设置
我正在尝试制作一个包含两个“固定”侧边栏图像和一个“固定”标题图像的页面。由于标题是固定的(距顶部 0 到 10%)。我不希望页眉图像与页面上的任何文本重叠。我尝试将段落标记定位为“相对”,并将其设置
我遇到了一个(水平)居中固定位置元素的解决方案,如下所示: element { width: 200px; position: fixed; left: 0; righ
我试图让我的网站主体具有固定的高度(我想!)。 无论如何,站点正文只是白色,边框大小为 1。基本上,正文的大小取决于其中的内容,例如,随着添加更多内容,它会自动调整大小。 我想要的是垂直滚动条,这样主
是否可以在 css 中创建 master-detail-states 布局? 我需要 3 个占位符: +---------------+-------+ | A | B
我的问题是,我是否必须在每个 Get/Post 请求之前单独请求检查 SSL Pinning OkHttpClient client = new OkHttpClient.Builder().cert
假设我有一个具有 N 个节点的常量(一旦构建就不会改变)平衡树,每个内部节点都有 p 个子节点。显然,访问节点的最坏情况是 logp(N)。但是访问 r 个节点的摊销成本呢?如果我们按升序访问它们(有
我知道会话固定是用php破解网站的方法。 会话固定是一种允许攻击者劫持有效用户会话的攻击 session fixation 但我不知道这可以防止我的项目中出现此问题。 是描述解决方案的方式或样本。 最
我在 jquery 砖石布局内有一个导航元素,我想将其修复到特定位置,比如右上角。是否可以这样做,以便所有其他元素都位于它周围? 诸如前置导航之类的东西.. 这是我的代码:http://jsfiddl
我是一名优秀的程序员,十分优秀!