- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我的网站中,我有一个带有一些选项卡的导航栏。每次将鼠标悬停在选项卡上时,都会出现一个下拉列表。当下拉列表出现时,导航栏下方的元素被下推。
我的 HTML:
<!DOCTYPE html>
<html>
<head>
<title>Awesome Games Online</title>
<link rel="stylesheet" type="text/css" href="games.css">
<link rel='icon' type="image/PNG" href="favicon.png">
<meta name="keywords" content="Games,free,fun,awesome,html5">
<meta name="description" content="Awesome Games Online For You! Play Some Free Online Games!">
</head>
<body>
<header>
<h1>Awesome Games Online</h1>
<nav>
<div class="games">
<a href="#">Games</a>
<a href="pixeljump" class="hidden alpha">PixelJump <span>(beta)</span></a>
<a class="hidden dev" href='candycraft'>Candy Craft <span>(in development)</span></a>
<a class="hidden dev" href="crashed_stranded">Crashed&Stranded <span>(in development)</span></a>
<a class="hidden coming" href='pixelgravity'><span>Coming Soon!</span> Pixel Gravity</a>
<a class="hidden planned" href='nyanclicker'><span>Planned!</span> Nyan Clicker</a>
<a class="hidden planned" href='pixelcraft'><span>Planned!</span> Pixel Craft</a>
<a class="hidden planned" href='pixeldestroy'><span>Planned!</span> Pixel Destroy</a>
<a class="hidden planned" href='pixeldash'><span>Planned!</span> Pixel Dash</a>
<a class="hidden planned" href='pixelbounce'><span>Planned!</span> Pixel Bounce</a>
<a class="hidden planned" href='pixelchop'><span>Planned!</span> Pixel Chop</a>
<a class="hidden planned" href='pixelchase'><span>Planned!</span> Pixel Chase</a>
</div>
<div class="social">
<a href="#">Social / News</a>
<a href="https://plus.google.com/+Awesomegamesonlinepage/" class="hidden google">Google+</a>
<a href="http://awesomegamesonline.github.io" class="hidden github">Github</a>
</div>
<div class="misc">
<a href="misc">Miscellaneous</a>
<a href="misc/cool_shapes.html" class="hidden geom">Play with cool shapes</a>
</div>
</nav>
</header>
<p>
Hello. I like to make games.<br>
Here you can play games I and others (in collaboration) made.
Have fun playing games!
Start by hovering over the Games tab.
</p>
<!--
<p>
View the <a href="/store">store</a> (not ready)
</p>
<p>
The <a href="/forum">forums</a> are not open yet. Sorry for your inconvienence.
</p>
-->
<p style="color: brown">
©theawesomenerd, ©swacky, ©kaya123 Copyright 2015-2016. Awesome Games Online.
</p>
</body>
</html>
我的 CSS:
body {background-color:#DEDEDE; text-align: center}
p {color:#339933}
a, h1 {font-weight:bold;color:#44CC00; text-decoration: none; font-family: sans-serif}
h1 {font-size: 400%}
nav a {display: block}
nav > h1 {vertical-align: top; display: inline-block}
nav > div {display: inline-block; vertical-align: top; margin: 0; border: 0; height: 5%}
nav > div.games {width: 20%}
nav > div.social {width: 20%}
nav > div.misc {width: 20%}
nav > div > a {padding: 5px; background-color: #EEFFEE}
nav > div > a.hidden {display: none; text-align: left}
nav > div > a.hidden:hover {background-color: #DDEEDD}
nav > div:hover > a.hidden {display: block; opacity: 0.9}
a:hover {text-decoration:none;}
a:active {color:red}
a.bottomlink {color:#3399CC}
a.bottomlink:hover {color:#44AADD}
a.bottomlink:active {font-weight:bold;color:#2688B9}
.alpha > span {color: green}
.dev > span {color: #CCCC00}
.coming > span {color: #00CCCC}
.planned > span {color: #660066}
.alpha:active {color: yellow}
.dev:active {color: orange}
.coming:active {color: blue}
.planned:active {color: pink}
当我将鼠标悬停在每个选项卡(如 <div class="games">
)上时,我该如何做到这一点,下拉列表不会下推下面的元素?
最佳答案
您需要在nav
上设置一个高度。这是一个 fiddle .
nav{
height: 20px;
}
关于html - 当我的下拉元素出现时,所有内容都被向下推,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36993432/
当我推/拉存储库时,是否可以详细输出到底发生了什么?目前,我有一个大型存储库,正在将其推送到服务器,大约 15 分钟后。或者这样,它给了我一个错误,但没有告诉我它在这 15 分钟内做了什么。 最佳答案
我不知道我的方法是否有意义,但是,我需要实现如下图的布局: 现在,我只写一个 并用其中的一列表示每个区域,例如 . 没有黄色区域,这工作正常: green red blue
当我查看许多 CSS 网格系统和框架时,它们通常具有标准的列和行设置以及百分比宽度。例如这样的事情: 标准网格列: .col-10 { width: 83.33333%; width: cal
我想使用 git 子模块。 我需要采取的步骤将我的更改推送到我的项目是 add/commit/push from submodule directory add/commit/push from pa
以下为百度站长平台的公告全文: 结合站长对于关键词数据分析的需求,站长平台对流量与关键词工具进行了升级,推出(“关键词影响力”)这一全新概念。关键词影响力算法复杂,涵盖该关键词下百度搜索可以为
我需要一个具有普通按钮和下拉按钮的控件。 例如 类似的控件在 wxRibbonButtonBar 中可用,我无法在简单的 wxPanel 中使用它。 最佳答案 我实现了 SplitButton,它看起
我一直在做一个项目,使用 Bazaar 作为版本控制系统。现在我必须和离岸人员一起工作,而他们只想使用 SVN。 我有什么: 我的 bazaar 分支及其文件和修订版。 一个全新的 subversio
我一直在开发数据流/图表风格的内部 DSP 应用程序(Java 带有 Groovy/Jython/JRuby 的钩子(Hook),通过 OSGi 的插件,大量的 JNI),类似于纯数据和 simuli
我正在尝试使用 THUMB 指令创建一个阶乘方法,我基本上做到了。 我只有一个关于 PUSH/POP 操作码的问题:如果我使用 push 将 r0 的值存储在堆栈中(所以 push {r0} ),我可
在尝试 ZeroMQ Push/Pull (他们称之为 Pipeline)套接字类型时,我很难理解这个图案。它被称为“负载均衡器”。 假设单个服务器将任务发送给多个工作人员,推/拉将在所有客户端之间平
有什么方法可以使用 push() 方法找出我的数据何时保存在数据库中?我写了下面的代码,但它多次保存数据...... db.ref('news').push(opts).then(() => {
我有这个问题,每次推或拉时我都必须把它放进去。我认为这是新的。有什么想法吗? 最佳答案 您可能正在使用 https 网址。切换到 ssh 并确保您的 key 设置正确(如果您的密码短语为空),则不必输
为什么当您将一个值压入堆栈时,ESP 寄存器会减少(而不是增加),而当您弹出一个值时,ESP 寄存器会增加(而不是减少)?在这一点上,这对我来说是违反直觉的。 最佳答案 那是因为堆栈是从上到下“增长”
有什么方法可以使用 push() 方法找出我的数据何时保存在数据库中?我写了下面的代码,但它多次保存数据...... db.ref('news').push(opts).then(() => {
我决定编写一个测试代码来查看 pusher - many pullers bundle 是如何工作的,我的怀疑成真了。 拉取器按照连接的顺序接收消息,例如第一个消息由第一个连接的拉取器接收,第二个由第
我在 CSV 文件中存储了一长串日期。我已经成功地使用 d3.js 加载了这个数据集。现在我想向此数据集添加另一列,其中包含列表中每个日期的随机数。 我相信此数据集已作为对象数组加载。所以我正在使用下
我一直在寻找解决方案。不使用 c++11。 for(int a = 1; a < team1.chan; a++) { team1.nums.push_back(ppb.back())
我打算在布局中构建带有滑动 subview 的 UI。 +--------------+ +--------------+ +--------------+ | view1
Title 在小屏幕上,我首先需要标题,然后是文本字段,但在中等以上的屏幕上,我需要相反的方式 - 我已经尝试过推和拉,但它们无法工作 - 有什么想法吗? 最佳答案 根据 Swa
zmq 的某些部分未以可预测的方式运行。 我正在使用 VS2013 和 zmq 3.2.4。为了不在我的 pubsub 框架中“丢失”消息 [旁白:我认为这是一个设计缺陷。我应该能够首先启动我的订阅者
我是一名优秀的程序员,十分优秀!