- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在网站上工作(网站 here)。分类为 .index_container
的 div 及其所有内容都无法在 Firefox 中正确显示。他们在那里,但不可见。我已经尝试设置display: table;
,这使得内容应该占据的空间可见,但内容本身仍然没有正确显示。我也试过弄乱 overflow
,但无济于事。
此外,我已经确认它适用于 OS X 上的 Safari 和 Chrome、Android 上的 Chrome、iOS 上的 Chrome 和 Safari,以及 Windows 上的 Internet Explorer。然而,在 Windows 上,Microsoft Edge 与 Firefox 存在相同的显示问题。
.index_header {
overflow-x: auto;
max-width: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-stype: -ms-autohiding-scrollbar;
position: relative; }
@media screen and (max-width: 39.9375em) {
.index_header {
background-image: url("../img/header/banner_small.jpg");
background-size: 100% 100%;
height: 100%;
padding-top: 100%;
background-attachment: scroll;
background-position: left; } }
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
.index_header {
background-image: url("../img/header/banner_medium.jpg");
background-size: 100% 100%;
height: 100%;
padding-top: 42.93333%;
background-attachment: scroll;
background-position: left; } }
@media print, screen and (min-width: 64em) {
.index_header {
background-image: url("../img/header/banner_large.jpg");
background-size: 100% 100%;
height: 100%;
padding-top: 34.00204%;
background-attachment: scroll;
background-position: left; } }
.index_header .index_headshot {
z-index: 2;
border-radius: 100%; }
@media screen and (max-width: 39.9375em) {
.index_header .index_headshot {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); } }
@media print, screen and (min-width: 40em) {
.index_header .index_headshot {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); } }
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
.index_header .index_headshot {
margin-left: 6.2%; } }
@media print, screen and (min-width: 64em) {
.index_header .index_headshot {
margin-left: 4.89629%; } }
.index_header .index_headshot img {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 2; }
@media screen and (max-width: 39.9375em) {
.index_header .index_headshot {
height: 78.125%;
width: 78.125%; }
.index_header .index_headshot img {
height: 79.375%; } }
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
.index_header .index_headshot {
height: 77.63975%;
width: 33.33333%; }
.index_header .index_headshot img {
height: 77.63975%; } }
@media print, screen and (min-width: 64em) {
.index_header .index_headshot {
height: 77.8%;
width: 26.45359%; }
.index_header .index_headshot img {
height: 77.8%; } }
@media screen and (max-width: 39.9375em) {
.index_header:before {
background-color: rgba(36, 47, 49, 0.4);
position: absolute !important;
top: 0rem !important;
right: 0rem !important;
bottom: 0rem !important;
left: 0rem !important;
content: '';
width: auto;
height: 100%; } }
@media print, screen and (min-width: 40em) {
.index_header:before {
background: linear-gradient(to right, rgba(36, 47, 49, 0.4) 15%, rgba(36, 47, 49, 0));
position: absolute !important;
top: 0rem !important;
right: 0rem !important;
bottom: 0rem !important;
left: 0rem !important;
content: '';
width: auto;
height: 100%; } }
.index_header .index_header_content {
position: relative; }
@media screen and (max-width: 39.9375em) {
.index_header .index_header_content {
margin-top: -100%; } }
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
.index_header .index_header_content {
margin-top: -42.93333%; }
.index_header .index_header_content h1 {
margin-top: 5%;
font-size: 56px;
color: #111617;
opacity: .7; } }
@media print, screen and (min-width: 64em) {
.index_header .index_header_content {
margin-top: -34.00204%; }
.index_header .index_header_content h1 {
margin-top: 3%;
font-size: 72px;
color: #111617;
opacity: .7; } }
.index_header .index_header_content .index_name {
text-align: center;
width: 100%;
background-color: rgba(71, 106, 105, 0.9);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
min-height: 0px;
min-width: 0px;
width: calc(100% - 1.875rem);
margin-right: 0.9375rem;
margin-left: 0.9375rem;
z-index: 1; }
.index_header .index_header_content .index_name:after {
position: absolute !important;
top: 0rem !important;
right: 0rem !important;
bottom: 0rem !important;
left: 0rem !important;
content: '';
width: auto;
height: 100%;
background: url(../img/header/nav2.png);
background-repeat: repeat-x;
margin-left: -12%;
z-index: -1;
opacity: .3; }
@media screen and (max-width: 39.9375em) {
.index_header .index_header_content .index_name {
display: none; } }
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
.index_header .index_header_content .index_name {
margin-top: 21.46667%;
padding-left: 35%; } }
@media print, screen and (min-width: 64em) {
.index_header .index_header_content .index_name {
margin-top: 17.00102%;
padding-left: 20%; } }
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Josh Guberman</title>
<link rel="stylesheet" href="assets/css/app.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon/manifest.json">
<link rel="mask-icon" href="assets/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href=".assetsimg/favicon/favicon.ico">
<meta name="msapplication-config" content="assets/img/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="top-bar" id="big">
<div class="top-bar-left">
<!--
<ul class="menu">
<li class="menu-text">Josh Guberman</li>
</ul>
-->
</div>
<div class="top-bar-right">
<ul class="menu">
<li><a href="#">About Me</a></li>
<li><a href="#">CV</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Artwork</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</div><div class="top-bar" id="small">
<div class="menu">
<div class="menu-text">Josh Guberman</div>
</div>
</div>
<div class="index_header">
<div class="index_headshot">
<img src="assets/img/header/headshot.svg" alt="headshot of Josh Guberman">
</div><!-- index_headshot -->
<div class="index_header_content">
<div class="index_name">
<h1>Josh Guberman</h1>
</div><!-- index_name -->
</div> <!-- index_header_content -->
</div> <!-- index_header_container --><div class="about-me">
<div class="spacer"></div>
<div class="top-heading"><h2>About Me</h2></div>
<div class="spacer"></div>
<div class="about-content">
<p>Some words are written here</p>
</div>
</div>
<div class="footer-container">
<div class="footer-wrapper">
<div class="footer">
<p>©Josh Guberman 2017</p>
</div>
</div>
</div>
<script src="assets/js/app.js"></script>
<script>$(window).on('changed.zf.mediaquery', function(event, newSize, oldSize) {
// newSize is the name of the now-current breakpoint, oldSize is the previous breakpoint
});</script>
</body>
</html>
最佳答案
所以我本来就很不爽。我认为问题是 firefox 默认给你的标题高度为 0px。继续控制台并更改它一些你可以看到我能够通过对标题的 CSS 进行小的调整来看到它。 Here是 imgur 链接。
关于html - 网站 div 在 Firefox 中无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45910946/
我已经为桌面和移动 Firefox 开发了一些 Firefox 插件(扩展),但现在我无法将插件/扩展安装到在 Firefox OS 中运行的浏览器中(我正在使用模拟器插件)。请注意,我不想创建一个传
可以将选项卡/网址从移动 Firefox 发送到桌面 Firefox 浏览器,但是否可以以相反的方式执行此操作?从桌面版 Firefox 到移动版 Firefox,并像其他方向一样自动加载。我找不到除
我想等待 Firefox-Browser-Events (sessionstore-windows-restored, user-interaction-inactive,..) 以清除历史记录。我的
我在公司网络中,想为 Firefox 安装一些开发人员工具。不幸的是,政策禁止 Firefox 直接访问互联网,但还有其他浏览器可以访问互联网。现在:如何在没有 Firefox 的情况下直接下载 xp
是否有用于在 firefox 中执行选择性缓存的插件或方法?我可以disable caching entirely ,但我仍然希望能够缓存一些需要几秒钟才能加载的大型 javascript 库 (ex
我目前正在将 Chrome 扩展程序转换为 Firefox 插件,并希望复制 chrome.storage.sync 功能。 但是,我无法使用 simple-storage 找到是否由 Firefox
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
所以,我使用这个代码: var options = { enableHighAccuracy: true, timeout: 2000, maximumAge: 100 }; navi
有没有办法打开 Firefox 并强制它在启动时加载临时加载项(webextension)?通常我必须手动去about:debugging并选择我硬盘上的扩展名。我正在寻找一个可以在加载 Firefo
我正在密切关注教程 here当我尝试创建 Firefox 扩展时。我的扩展有以下树: backtosearch +-chrome +-content backtosearch.
如何从代码中正确地重启 firefox(没有任何“恢复 session ”的东西并且使用与以前相同的窗口)? 我知道 bash 脚本进程中“firefox-bin”的 pid,并且我已将自定义插件加载
自从 Firefox 的最后几次更新以来,我们心爱的 Firebug 已集成到 Firefox 开发人员工具中,并且包括我在内的很多人 don't like what happened到 Firebu
当你在某处上传图片时,在使用chrome时,你可以看到状态栏实际上显示了上传的“状态”,即上传完成的百分比。 Firefox 的状态栏有没有办法显示这个上传状态? 最佳答案 用谷歌搜索这个,发现这个:
例如 Chrome 保存在这里:~Library/Application Support/Google/Chrome/Default/Current Tabs和 Safari 在这里 ~/Librar
当火狐开发者版推出时,我很高兴,我可以使用WebIde、响应式设计工具、滴管等……今天我受够了。 里面有很多bug,我就不一一列举我和我的同事发送和批准了多少bug了…… 我在 google 中搜索过
我在 Ubuntu 上使用 Firefox,版本 39.0。我正在尝试调试一个附加组件,并希望在 chrome 权限下运行一些 JavaScript。根据 this page我应该能够在浏览器控制台中
几天前,我更改了我的网站的图标:打开网站后,它可以很好地工作: 我的网站也在我的书签中,但是显示了旧的收藏夹图标: 我已经看过here,但是答案并没有解决我的问题。 解决方法可能非常简单,但是到目前为
我正在使用web API从Firefox开发一个 native 消息传递应用程序。该扩展应该调用一个解析stdin的应用程序,然后基于它解析的一些数据调用我的另一个rust应用程序,但是出于显而易见的
在 Firefox 中有插件和扩展。你能解释一下为什么这些插件有不同的名称和标签吗?它们是否差异如此之大,以至于需要不同的名称?我认为区分这些东西有点不自然,扩展具有越来越多的功能,与插件相比它们缺少
我正在使用附加构建器和附加 SDK 编写 Firefox 扩展。到目前为止,我已经能够解决任何限制,而无需迁移到 XUL。但是,我遇到了障碍。 我的扩展程序有一个长时间运行的进程,可能会阻塞,因此我需
我是一名优秀的程序员,十分优秀!