- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我无法弄清楚是什么导致空白出现在我的页面页脚下方,仅适用于移动设备。我将正文设置为红色,所以知道是正文而不是 HTML 引起的。我尝试将 HTML 和正文的填充和边距设置为 0,但它仍然存在。 (将边距设置为 0 会删除屏幕边缘的默认 8px 边距,但 padding: 0 不会执行任何操作。)
@charset "utf-8";
/* CSS document */
body,
td,
th,
p {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #333;
line-height: 1.5;
}
body {
/* Displayed at bottom on mobile */
background-color: #db2626;
/* Removes border that appears around sides of screen */
margin: 0;
/* padding: 0; */
/* TODO: Does this do anything */
/* position: relative; */
}
ul,
li {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #333;
}
a {
color: orange;
text-decoration: none;
}
a:hover,
a:focus {
color: #288dd1;
text-decoration: none;
}
/* TODO: Find out what this applies to */
a img {
/* Shorthand for border-width, border-style, border-color */
border: 0 none #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Arial, Helvetica, sans-serif;
margin: 0 0 20px;
}
/* Applies to restaurant hours table, and causes table to render more quickly. Whereas in the default table-layout property value of auto, in which column width is set by widest unbreakable content in cells (content dictating layout), with property value of fixed table and column widths are determined by width of table or col or by width of first row of cells. Column widths are split equally if widths not present in first row */
table {
table-layout: fixed;
}
#maincontent {
background-color: #f3f3f3;
/* TODO: Does this do anything */
/* min-height: 100%; */
/* TODO: This removes gap at bottom but makes middle section taller */
/* height: 100vh; */
}
#main-restaurant {
background-color: #f3f3f3;
display: flex;
flex-direction: column;
}
#footer {
background-color: #444;
color: #dedede;
font-size: 8pt;
letter-spacing: 1px;
padding: 25px;
text-align: center;
text-transform: uppercase;
}
/* ====================== Navigation ====================== */
nav {
width: 100%;
height: 80px;
background-color: #252831;
/* With display-flex instead of default display block, magin: auto applied to centers */
display: flex;
}
nav h1 {
/* With display-flex instead of default display: block applied to nav, magin: auto applied to h1 descendant of nav causes h1 to be centered */
margin: auto;
}
nav h1 a {
color: #fff;
font-size: 14pt;
font-weight: 200;
letter-spacing: 10px;
text-transform: uppercase;
}
#breadcrumb {
padding: 10px 40px 16px;
list-style: none;
background-color: #eee;
font-size: 17px;
margin: 0;
}
/* Display list items side by side */
#breadcrumb li {
display: inline;
}
/* Add slash symbol (/) before/behind each list item */
#breadcrumb li+li:before {
padding: 8px;
color: black;
content: '/\00a0';
}
/* Add color to all links inside list */
#breadcrumb li a {
color: #252831;
text-decoration: none;
}
/* Add color on mouseover */
#breadcrumb li a:hover {
color: #01447e;
text-decoration: underline;
}
/* ====================== Map ====================== */
#map {
height: 400px;
max-width: 100%;
background-color: #ccc;
}
/* ====================== Restaurant filtering ====================== */
.filter-options {
max-width: 100%;
height: 50px;
background-color: #3397db;
display: flex;
justify-content: center;
align-items: center;
}
.filter-options select {
background-color: white;
border: 1px solid #fff;
font-family: Arial, sans-serif;
font-size: 10pt;
height: 35px;
letter-spacing: 0;
margin: 10px;
padding: 0 10px;
max-width: 160px;
}
/* ====================== Restaurant listing ====================== */
#restaurants-list {
background-color: #f3f3f3;
list-style: outside none none;
margin: 0;
padding: 30px 15px 60px;
text-align: center;
display: grid;
grid-template-columns: repeat(1, 1fr);
justify-items: center;
grid-gap: 20px;
}
#restaurants-list li {
background-color: #fff;
border: 2px solid #ccc;
font-family: Arial, sans-serif;
min-height: 380px;
padding: 0 30px 25px;
text-align: left;
max-width: 270px;
}
#restaurants-list .restaurant-img {
background-color: #ccc;
display: block;
margin: 0;
max-width: 100%;
min-height: 248px;
min-width: 100%;
}
#restaurants-list li h1 {
color: #bd5900;
font-family: Arial, sans-serif;
font-size: 14pt;
font-weight: 200;
letter-spacing: 0;
line-height: 1.3;
margin: 20px 0 10px;
text-transform: uppercase;
}
#restaurants-list p {
margin: 0;
font-size: 11pt;
}
#restaurants-list li a {
background-color: #252831;
border-bottom: 3px solid #eee;
color: hsl(0, 0%, 100%);
display: inline-block;
font-size: 10pt;
margin: 15px 0 0;
padding: 8px 30px 10px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
}
/* ====================== Restaurant details ====================== */
.inside header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}
.inside #map-container {
width: 100%;
margin-top: 130px;
}
.inside #footer {
bottom: 0;
position: absolute;
width: 95%;
}
#restaurant-name {
color: #bd5900;
font-family: Arial, sans-serif;
font-size: 20pt;
font-weight: 200;
letter-spacing: 0;
margin: 15px 0 30px;
text-transform: uppercase;
line-height: 1.1;
}
#restaurant-img {
width: 50%;
}
#restaurant-address {
font-size: 12pt;
margin: 10px 0px;
}
#restaurant-cuisine {
background-color: #333;
color: #ddd;
font-size: 12pt;
font-weight: 300;
letter-spacing: 10px;
margin: 0 0 20px;
padding: 2px 0;
text-align: center;
text-transform: uppercase;
width: 50%;
}
#restaurant-container,
#reviews-container,
.reviews-form {
border-bottom: 1px solid #d9d9d9;
border-top: 1px solid #fff;
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
#reviews-container {
padding: 30px 40px 80px;
}
#reviews-container h2 {
color: #252831;
font-size: 24pt;
font-weight: 300;
letter-spacing: -1px;
padding-bottom: 1pt;
}
#reviews-list {
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
max-width: 100%;
}
#reviews-list li {
background-color: #fff;
border: 2px solid #f3f3f3;
margin: 0 0 30px;
overflow: hidden;
padding: 35px;
width: 90%;
}
#reviews-list li p {
margin: 0 0 10px;
word-wrap: break-word;
}
#restaurant-hours {
background-color: #fff;
border: 2px solid #f3f3f3;
overflow: hidden;
padding: 20px;
}
#restaurant-hours td {
color: #666;
}
.restaurant-icon {
display: flex;
}
.restaurant-fav-icon {
width: 50px;
height: 50px;
margin-top: 10px;
}
/* Review form */
.form__heading {
color: #252831;
font-size: 24pt;
font-weight: 300;
padding-top: 1rem;
}
.form {
display: flex;
flex-direction: column;
}
.form>input,
.form>textarea {
margin: 10px 0;
padding: 10px;
border-radius: 0.4rem;
}
.form__restaurant-id {
display: none;
}
.form__submit {
background-color: transparent;
color: #252831;
border: 1px solid #252831;
border-radius: 0.4rem;
padding: 1rem;
letter-spacing: 0.5rem;
text-indent: 0.5em;
}
.leaflet-container a {
color: #252831 !important;
}
/* ====================== Media queries ====================== */
/* Small devices (portrait tablets, medium phones) */
@media screen and (min-width: 640px) {
#restaurants-list {
grid-template-columns: repeat(2, 1fr);
}
}
/* Medium devices (landscape tablets and large phones) */
@media screen and (min-width: 960px) {
#restaurants-list {
grid-template-columns: repeat(3, 1fr);
}
#reviews-list li {
max-width: 70%;
}
}
/* Extra large devices (large laptops and desktops) */
@media screen and (min-width: 1200px) {
#restaurants-list {
grid-template-columns: repeat(4, 1fr);
}
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Reviews</title>
</head>
<body>
<header>
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
</header>
<main id="maincontent">
<!-- Section: thematic grouping of content. A homepage is often split into sections for introduction, content, contact info -->
<section id="map-container">
<div id="map" role="application" aria-label="location"></div>
</section>
<section>
<div class="filter-options">
<select id="neighborhoods-select" name="neighborhoods" aria-label="neighborhoods" onchange="updateRestaurants()">
<option value="all">All Neighborhoods</option>
</select>
<select id="cuisines-select" name="cuisines" aria-label="cuisines" onchange="updateRestaurants()">
<option value="all">All Cuisines</option>
</select>
</div>
<ul id="restaurants-list"></ul>
</section>
</main>
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script>
<script type="application/javascript" charset="utf-8" src="js/dbhelper.js"></script>
<script type="application/javascript" charset="utf-8" src="js/main.js"></script>
<!-- <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY&libraries=places&callback=initMap"></script> -->
<footer id="footer">
Copyright (c) 2018 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
</body>
</html>
最佳答案
您的问题可能是您的内容不够高,无法填满屏幕,最终会在屏幕上留下一些剩余空间,即您的红色空白区域。尝试添加以下代码:
<body>
<div id="main">
<!--Put everything in here-->
</div>
</body>
div#main {
height: 100vh;
background-color: lime; /*Just to see if it works*/
}
这应该可以解决您的问题。
关于html - 删除移动页面底部的正文空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52013178/
假设我有父页面。 当我单击“打印”时,会打开一个新选项卡(页面)以进行打印预览。 我想要的是,当我单击“打印”时,父选项卡(页面)上应显示覆盖层,以停止进一步的工作,直到子选项卡关闭。 Because
我知道这是不可能的,但我想我还是会问这个问题。 我有一个 HTTPS 页面,并且正在动态创建一个表单。我想将表单发布到 HTTP 页面。在浏览器不弹出警告的情况下这可能吗?当我在 IE8 上执行此操作
在我的应用程序中,我实现了ajax 4.0客户端模板 目前我的模板位于同一个.aspx页面上。 (例如 Main.aspx) 但我想将它们外部化。(即所有 HTML 都会放在另一个页面上) 为此,我使
我目前正在构建自己的网络应用程序。在此应用程序的标题中有一个导航栏。 我将相同的导航栏添加到我的所有 html 页面,以便在页面之间导航时保持可见,并将导航元素设置为事件到我现在所在的页面。 我的
我们有一个在集成管道下运行的 IIS7 Intranet 站点,该管道主要是 ASP.Net,带有一些传统的经典 ASP 页面。该站点允许匿名访问大多数区域,但使用 Windows 身份验证来保护某些
有一个要求,我需要根据 div 标签的高度超过 700 像素的条件将大型 HTML 页面拆分为多个页面。 我还可以根据字数拆分页面。 下面的示例根据 HTML 标签分割页面,而我需要根据 div 高度
有两个 html 页面,如果在第一个页面中单击特定图像,它将转到第二个 html 页面。如果在第二个 html 页面上的任何地方单击它应该返回到第一页并将第二页完全显示在第一页的一个 div 中 1s
我有一个简单的 hello world Servant 应用程序。我需要向它添加一些静态或动态的 html 页面。我怎样才能做到这一点?在文档中没有提到它。注意我不想在 Haskell 代码中创建 h
我有两个文件 index.html 和 index2.html。这两个文件都在本地机器上的同一目录中(无法访问 PHP 等)。 我正在努力 Page Title 使用 jQuery 从 index.h
假设我有一个 JSP 页面 index.jsp User id:
我面临着一个对我来说非常陌生的情况。我会尽力让事情变得简单来解释它一步一步来。 1)在页面 A(用户表单)中,我从字段中获取一些值并将其作为 jQuery AJAX POST 发送到页面 B。这是主要
我正在尝试弄清楚如何从 buttons.html 获取用户按钮点击动态切换第二个列的可见性 userinput.html 。我正在使用 DataTables userinput.html表并认为我有
我有asp。净 mvc4 项目。 Angularjs 已集成。 我已经按照以前的要求构建了 HTML 页面和 WEB API 2。 现在出于某种原因,我必须使用 CSHTML 页面。以前我只有 web
我的网站包含大约 18 个不同的页面。以管理员身份登录后,我单击“页面”。 我看到了以下内容 All (20) | Mine (19) | Published (19) | Draft (1) No
Haskell 中每个函数都有手册页吗?换句话说,我可以在某处输入 man fst 并获取有关该函数的手册或帮助页面吗?我发现大量的功能势不可挡! 我正在使用 GHC 和 GHCi。 最佳答案 我不知
我一直在用github pages很长一段时间以来,并使用自定义域重定向功能来重定向我的 user website来自 prahladyeri.github.io到我自己的域名 https://www
我对 Github 有一个基本的了解:我知道如何创建、添加、提交、推送和克隆存储库。我也开始探索 Github 页面来托管我的项目。我的最新项目于 3 月开始并将其推送到 gh-page。从那以后,我
在尝试查看日志时,Airflow 会抛出一个带有以下消息的 oops 页面: File "/Users/user/.pyenv/versions/3.5.2/lib/python3.5/locale.
我已经按照此处列出的步骤 (https://pages.github.com/) 为我正在处理的网站设置了一个 GitHub 页面 我设置的站点当前托管在 IIS 下,并使用 URL Rewrite
我想将我的 domain.com 重定向到 openshift 页面 (openshift-app.rhcloud.com)。我已经按照描述完成了 here它有效。唯一的问题是,在任何网站上,我都不会
我是一名优秀的程序员,十分优秀!