- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 basic layout .我正在尝试使用 CSS 网格创建布局。
出于某种原因,我在不应该出现的时候出现了滚动条,因为没有足够高的内容来保证滚动条。
我创建了 this codepen .
HTML
<div class="l-grid">
<header>
<h1 class="logo"><span class="logo__brand-color">M</span>y Site</h1>
</header>
<main>
<div class="quote">
<img
src="https://www.viva.org.uk/sites/default/files/styles/large/public/Albert%20Einstein_0.jpg?itok=A5nVyyns"
alt="celadet"
class="quote__image"
/>
<p class="quote__body">
A hundred times every day I remind myself that my inner and outer life are based on the labors of other men, living and dead, and that I must exert myself in order to give in the same measure as I have received and am still receiving.
</p>
<h3 class="quote__author">Albert Einstein</h3>
</div>
<div class="search">
<input
type="text"
class="search__field"
placeholder="Search quotes"
/>
</div>
</main>
<footer>
<ul class="footer-nav">
<li class="footer-nav__item">
<a href="#" class="footer-nav__link">About</a>
</li>
<li class="footer-nav__item footer-nav__item--separator">·</li>
<li class="footer-nav__item">
<a href="#" class="footer-nav__link">Help</a>
</li>
<li class="footer-nav__item footer-nav__item--separator">·</li>
<li class="footer-nav__item">
<a href="#" class="footer-nav__link">Contact</a>
</li>
</ul>
</footer>
</div>
CSS
* {
margin: 0;
padding: 0;
text-decoration: none;
list-style: none;
border: none;
box-sizing: border-box;
}
:root {
font-size: 100%;
}
html,
body {
height: 100%;
}
body {
background-color: #292c37;
}
.l-grid {
display: grid;
width: 1100px;
margin: 0 auto;
height: 100%;
grid-template-columns: 1;
grid-template-rows: auto 1fr auto;
align-items: center;
}
.logo {
color: #fff;
font-family: "Satisfy", cursive;
font-weight: 100;
}
.logo__brand-color {
color: hsl(355, 78%, 39%, 80%);
}
.quote {
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: auto auto;
font-size: 1rem;
grid-gap: 50px;
}
.quote__image {
border-radius: 50%;
width: 140px;
height: 140px;
object-fit: cover;
border: 2px solid hsl(0, 0%, 0%, 60%);
border-style: inset;
}
.quote__body {
font-family: "Lora", serif;
color: hsl(0, 0%, 100%, 85%);
line-height: 1.93em;
font-size: 1.2em;
}
.quote__author {
color: hsl(355, 78%, 39%, 80%);
grid-column: span 2;
text-align: right;
font-size: 1.5em;
}
.search {
background-color: #363a49;
padding: 20px;
border-radius: 3px;
}
.search__field {
background-color: #292c37;
border: none;
border-radius: 3px;
height: 43px;
width: 100%;
color: hsl(0, 0%, 100%, 60%);
font-family: "Lora", serif;
padding: 10px;
}
footer {
font-size: 1rem;
}
.footer-nav {
display: grid;
grid-template-columns: repeat(5, 100px);
justify-content: center;
}
.footer-nav__item {
display: flex;
justify-content: center;
align-items: center;
}
.footer-nav__item,
.footer-nav__link {
color: hsl(0, 0%, 100%, 50%);
text-align: center;
}
.footer-nav__link {
font-size: 1em;
font-family: "Roboto", sans-serif;
}
.footer-nav__item--separator {
font-size: 3em;
line-height: 0.5em;
}
最佳答案
我对此不是 100% 确定。
但我认为这一切背后的罪魁祸首是应用于 :
<li class="footer-nav__item footer-nav__item--separator">·</li>
这是
.footer-nav__item--separator {
font-size: 3em;
line-height: 0.5em;
}
默认字体大小:16px
现在知道我们的文本需要多少高度,我们将 font-size
乘以 line-height
(em、rem、px 或任何其他单位与行高无关)
3em * 16px = 48px // Size of the character
48px * .5 = 24px // The height of the text
如您所见,字符比高度大得多,因此它会溢出并导致出现滚动条。
解决方案:
line-height
或font-size
关于html - CSS Grid,在我不应该的时候得到一个滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58183670/
我必须使用 gridExtra::grid.arrange 来绘制除彼此之外的多个图,因为我使用该包来创建图的拟合。 我必须使用 grid.arrange 为绘图创建一个标题。 现在我想将两者结合起来
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
在我的农业网格的每一行中。我需要在每一行 ag-grid 中添加 Angular Material 图标按钮。但是,结果只显示了文本按钮。它不会在我的农业网格中显示我的图标按钮。 接下来,我需要在我的
我正在尝试使用 JSON 数据填充 KendoUI 网格,其中服务器返回总行数以及数据,但是我在让 serverPaging 正常工作时遇到了一些问题。我创建并分配网格的数据源如下:
Kendo 网格在网格加载、分页、排序时自动提供自己的加载指示器。它工作正常。 但我不希望显示/隐藏此内置加载指示器。 如何禁用此功能? 请建议我。 谢谢, 维诺特 最佳答案 很简单,只需用 CSS
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
我正在尝试将noDataMessage设置为dojox.grid.EnhancedGrid,网格工作正常,当商店获取数据时它显示它是行,没有问题,但是我需要当商店没有数据时网格将向我显示个性化消息。我
我的 ExtJS 6 框架有问题。当我使用 Ext.grid.Panel 时它可以工作,但我想使用 Ext.grid.Grid 。 Ext.grid.Panel 和 Ext.grid.Grid 有什么
我看到有几种风格的网格。当记录很大时,人们建议使用 Angular UI Grid 而不是 Datatables。 我认为数据表正在按 1 填充每一行并导致性能问题。 是否无法修复类似于其他网格的数据
是否有人有在 Grid Engine/Sun Grid Engine/Son of Grid Engine 上运行 Docker 的经验,并且能够 monitor the resource used
我一直在阅读 CSS Grid tutorial在 CSS Tricks 中,但一个基本方面让我有点困惑。 似乎有两种方法可以决定一个网格元素跨越多少个单元格: grid-template-area使
调整 ag-Grid 的大小(更改浏览器窗口的大小)并在两个选项卡之间切换时收到以下警告: ag-Grid: tried to call sizeColumnsToFit() but the grid
我正在尝试在 python 2.7 中构建一个 5x5 网格的游戏板,表示为二维列表。我尝试将其写为 board = [["O"]*cols]*rows (cols 和 rows 已声明为 5)但是当
AgGrid 日期筛选器的格式是mm/dd/yyyy,但我想将其更改为yyyy/mm/dd 我该怎么做?日期过滤器是网格的 columnDefinition 的一部分,我在其中使用 filter: '
我有一个基本的 ag-grid 和一些简单的虚拟数据,但它只在我不导入库提供的 .css 文件时显示,即使这样它也显示不正确。 摘 self 的 package.json: "ag-grid": "1
我有一个标准的单元格编辑器,当我处于编辑模式时,单元格编辑器的宽度和高度不是单元格的完整宽度和高度。 我应该覆盖样式还是配置中有任何标志可以关闭此效果? 最佳答案 我有同样的问题。如果您查看 DOM,
概览 以前在 ag-grid 版本 <10.1.0 中,可以通过这种方式在不刷新网格的情况下添加一行: let model: IRowModel = this.gridOptions.api.getM
是否可以合并 wx.grid 中相邻的单元格?我的意思是水平作为一行中的单元格和垂直作为一列中的单元格。 最佳答案 有一种方法可以让文本跨越网格小部件中的多行或多列。 wxPython 演示中有一个名
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 6年前关闭。 Improve this questi
谷歌搜索了很多没有任何结果...按下回车键时网格的默认行为是向下移动光标。但我必须使单元格编辑器在当前单元格中打开。我可以轻松 Hook 关键事件,但如何打开编辑器? 最佳答案 import wx i
我是一名优秀的程序员,十分优秀!