- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为什么页脚没有出现在服务页面的底部,这是我正在处理的页面链接 Service您可以编辑它或在我分享的代码片段中。
它正在为下面的页面工作。
注意:我不想在这里使用position:absolute
或position:fixed
body{
background-color: #ddd;
margin:0;
padding: 0;
font-family: Segoe UI;
}
ul{
list-style: none;
padding: 0;
margin: 0;
}
nav {
background-color: #B53B27;
width: 100%;
z-index: 20;
}
ul.main-menu{
text-align: center;
align-items: center;
}
nav > ul.main-menu > li{
display: inline;
}
nav > ul.main-menu > li > a{
background-color: #B53B27;
display: inline-block;
padding: 10px 15px;
color: #fff;
text-decoration: none;
outline: none;
}
nav > ul.main-menu > li > a:hover{
background-color: #8F2413;
}
.sticky-nav{
position: fixed;
top: 0;
z-index: 10;
}
.cover {
background: transparent url("http://snag.gy/TKyyO.jpg") repeat scroll 0% 0%;
width: 100%;
height: 580px;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
hr {
width: 850px;
border: 1px solid #C6C6C6;
}
.content {
text-align: center;
width: 60%;
margin: 0 auto;
margin-top: 100px;
margin-bottom: 100px;
}
.content h1 {
color: #BD0F0F;
text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.content p {
color: #534949;
}
.registration {
margin: 100px auto;
width: 300px;
text-align: center;
}
.registration h3 {
color: #C90404;
text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.registration > form > input[type="text"],
.registration > form > input[type="password"]{
width: 90%;
margin-bottom: 15px;
}
.registration > form > input[type="submit"]{
background-color: #B53B27;
color:#eee;
cursor: pointer;
}
.registration > form > input[type="submit"]:hover{
background-color: #8F2413;
}
input{
display: block;
width: 100%;
padding: 10px 15px;
border-style: none;
border-radius: 5px;
}
.img-container {
height: 500px;
width: 500px;
margin: 100px auto;
border-radius: 50%;
background: transparent url("http://snag.gy/lKbJE.jpg") repeat scroll 0% 0%;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: center;
box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.img-container a {
position: relative;
top: 240px;
color: #fff;
background-color: rgba(255, 255, 255, 0.24);
padding: 15px 25px;
border: 2px solid #fff;
text-decoration: none;
transition: all 0.4s ease-in-out;
border-radius: 5px;
outline: none;
}
.img-container a:hover {
background-color: #eee;
color: #000;
}
footer {
background-color: #771302;
color: #E0E0E0;
padding: 14px 15px;
}
footer > p {
width: 500px;
display: inline;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video of the week</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<header>
<div class="cover"></div>
<nav id="nav-bar">
<ul class="main-menu">
<li><a href="#">Home</a></li>
<li><a href="service.html">Service</a></li>
</ul>
</nav>
</header>
<div class="content margin-top-bottom">
<h1>Talk of the Week</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut gravida turpis. Suspendisse in eros in porta ornare. Nunc quis vulputate ante, ac maximus ipsum. Integer sed urna sit amet tellus sollicitudin lobortis sit amet at ligula. </p>
</div>
<hr>
<div class="registration margin-top-bottom">
<h3>Save your seat</h3>
<form method="post" action="abc.html">
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<input type="text" placeholder="Username">
<input type="text" placeholder="E-mail">
<input type="password" placeholder="Password">
<input type="Submit" value="Hit-on">
</form>
</div>
<hr>
<div class="img-container margin-top-bottom"><a href="#">Watch Now</a></div>
<div class="content margin-top-bottom">
<h1>Talk of the Week</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut gravida turpis. Suspendisse in eros in porta ornare. Nunc quis vulputate ante, ac maximus ipsum. Integer sed urna sit amet tellus sollicitudin lobortis sit amet at ligula.</p>
</div>
<footer>
<p>Copyright (c) 2015 Copyright Rahul Kashyap - All Rights Reserved.</p>
</footer>
</body>
</html>
这是我正在谈论的另一个页面代码片段
body{
background-color: #ddd;
margin:0;
padding: 0;
font-family: Segoe UI;
}
ul{
list-style: none;
padding: 0;
margin: 0;
}
nav {
background-color: #B53B27;
width: 100%;
z-index: 20;
}
ul.main-menu{
text-align: center;
align-items: center;
}
nav > ul.main-menu > li{
display: inline;
}
nav > ul.main-menu > li > a{
background-color: #B53B27;
display: inline-block;
padding: 10px 15px;
color: #fff;
text-decoration: none;
outline: none;
}
nav > ul.main-menu > li > a:hover{
background-color: #8F2413;
}
.content {
text-align: center;
width: 60%;
margin: 0 auto;
margin-top: 100px;
margin-bottom: 100px;
}
.content h1 {
color: #BD0F0F;
text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.content p {
color: #534949;
}
footer {
background-color: #771302;
color: #E0E0E0;
padding: 14px 15px;
}
footer > p {
width: 500px;
display: inline;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video of the week</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<header>
<nav id="nav-bar">
<ul class="main-menu">
<li><a href="index.html">Home</a></li>
<li><a href="service.html">Service</a></li>
</ul>
</nav>
</header>
<div class="content margin-top-bottom">
<h1>Talk of the Week</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut gravida turpis. Suspendisse in eros in porta ornare. Nunc quis vulputate ante, ac maximus ipsum. Integer sed urna sit amet tellus sollicitudin lobortis sit amet at ligula.</p>
</div>
<footer>
<p>Copyright (c) 2015 Copyright Rahul Kashyap - All Rights Reserved.</p>
</footer>
</body>
</html>
最佳答案
如果您不想使用position: fixed
或absolute
,那么calc
函数就是解决方案。
.content {
text-align: center;
width: 60%;
margin: 0 auto;
margin-top: 100px;
margin-bottom: 100px;
min-height: calc(100vh - 290px); // calculate the height (/* IE 9+, Fx 16+, Ch 26+ */)
}
将此添加到您的 CSS 中。 react 灵敏 !!
What I have done here is just add the height of footer, header and margins ( 41px + 49px + 100px + 100px )and subtract it from the
viewport
height (100vh).
body{
background-color: #ddd;
margin:0;
padding: 0;
font-family: Segoe UI;
}
ul{
list-style: none;
padding: 0;
margin: 0;
}
nav {
background-color: #B53B27;
width: 100%;
z-index: 20;
}
ul.main-menu{
text-align: center;
align-items: center;
}
nav > ul.main-menu > li{
display: inline;
}
nav > ul.main-menu > li > a{
background-color: #B53B27;
display: inline-block;
padding: 10px 15px;
color: #fff;
text-decoration: none;
outline: none;
}
nav > ul.main-menu > li > a:hover{
background-color: #8F2413;
}
.content {
text-align: center;
width: 60%;
margin: 0 auto;
margin-top: 100px;
margin-bottom: 100px;
min-height: calc(100vh - 290px); // calculate the height (/* IE 9+, Fx 16+, Ch 26+ */)
}
.content h1 {
color: #BD0F0F;
text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}
.content p {
color: #534949;
}
footer {
background-color: #771302;
color: #E0E0E0;
padding: 14px 15px;
}
footer > p {
width: 500px;
display: inline;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video of the week</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body></body>
<header>
<nav id="nav-bar">
<ul class="main-menu">
<li><a href="index.html">Home</a></li>
<li><a href="service.html">Service</a></li>
</ul>
</nav>
</header>
<div class="content margin-top-bottom">
<h1>Talk of the Week</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut gravida turpis. Suspendisse in eros in porta ornare. Nunc quis vulputate ante, ac maximus ipsum. Integer sed urna sit amet tellus sollicitudin lobortis sit amet at ligula.</p>
</div>
<footer>
<p>Copyright (c) 2015 Copyright Rahul Kashyap - All Rights Reserved.</p>
</footer>
</html>
关于html - 为什么页脚不在底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34893074/
如何在不使用垫片的情况下将 View 定位在底部。我知道我可以在 VStack 中放置一个间隔器和我的 View 来实现它,但我不想使用一个间隔器,因为我不希望我的 View 占据所有的垂直空间。使用
我想让文本 float 到现有标签的右下角。 我仍在使用旧学校表(编辑现有代码)。我的代码是这样的:
我有一个包含文本的表格单元格,但我怎样才能使文本齐平到单元格的顶部或底部(上面没有填充)?我试过垂直对齐,但它仍然没有到达顶部“边缘”。 我的代码 3.2325
我想用 javascript 打印一个特殊的页面 div。 function printDiv(divName) { var printContents = document
我需要检查元素是否距离页面底部 x 像素,以动态加载新内容。目前,即使栏位于底部,scrollTop 和高度也不匹配。 jquery 是允许的,虽然基本的 javascript 会更有帮助。 最佳答案
我正在用 pygame 重新制作 flappy bird,但主题是星球大战。我已经完成了游戏的美术和一般格式设置,但现在我需要调整细节。我一直在改变数字,试图让光剑完全到达屏幕的顶部和底部,因为目前有
http://pastehtml.com/view/bfzerlo1m.html 如何将红色框放在橙色 div 底部的 CENTER + 中? 红框的高度和宽度都是动态的,每个框都不同.. (它需要在
我正在研究和测试表格。到目前为止,我成功地使用 following fiddle 将选择框列表中的项目一项一项地向上和向下移动。 . 代码实例(向上移动): function moveUp() { $
在设计 IOS 应用程序时,我可以在页脚放置“后退”按钮功能吗? 最佳答案 我认为指南中没有任何内容禁止这样做,但是您的潜在用户习惯于将后退按钮放在左上角,因此除非您有充分的理由将后退按钮放在底部,并
你可以只在顶部/底部而不是所有(T、B、L、R)设置单元格填充或间距吗? 最佳答案 CSS? td { padding-top: 2px; padding-bottom: 2px; } 关于H
我正在为我的 React 应用程序使用无限滚动,并具有检测我何时恰好位于页面底部的功能: const [isFetching, setIsFetching] = useState(false); //
所以我有一个页面,其中有一个类似聊天的 div,里面充满了文本。它具有固定的高度和宽度(由 css 定义)。 我需要它在每次更新时滚动到底部,这是我到目前为止使用的 JS: $("#div1").an
我遇到了与此处描述的相同的问题:UIWebView doesn't scroll to the bottom of the webpage loaded/created (不幸的是没有人回答) 我有一
我有一个溢出设置为滚动的 div,它本质上是逐行从文件中流式传输数据。我想在流溢出时自动滚动到 div 的底部,但不使用“单击此处滚动到底部”按钮。 我已经知道 scrollTop = scrollH
我正在 Android studio 中构建一个应用程序,但遇到了一些问题。我在 main_activity.xml 中有一个 ImageView
我有一个扩展 Jpanel 的类,里面有一个动画。我有两个操作按钮可以停止和启动它,但是我需要这些按钮出现在 Jpanel 的底部。我已经尝试过: add(go,BOTTOM_ALIGNMENT);
嗨,我正在为ios设备(ipad)开发phonegap / cordova项目。该应用程序通过蓝牙键盘接收输入文本(因为我不想在屏幕上显示键盘)。到目前为止,应用程序可以按预期接收输入。但是关于外观,
我想在底部放置一个页脚。 出于某种原因,它会像这样出现。 在 index.html 中,我有:
我得到了一个带有内联编辑功能的 jqgrid,并且可以添加新行。 目前,新行以“编辑”模式显示在网格顶部。我想要的是将新行添加到网格底部,因为我的“添加新行”按钮位于自定义底部分页器中... 有人知道
在 Swift 3 中,我以编程方式创建了一个(底部)工具栏,其中包含自定义按钮,中间用灵活的垫片分隔自定义按钮,将一个(“上一个”)推到左边缘,另一个(“下一个”)到 View 的右边缘。但我无法显
我是一名优秀的程序员,十分优秀!