- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我希望有人能够解释这个问题。环顾互联网,令人惊讶的是我实际上找不到这个问题的详细解决方案或解释。
我包含的代码显示了一个使用 flexbox 的有效显示。大概这个问题只发生在 flex 盒子上(如果我错了,请纠正我!)。但是,如果您在旧浏览器或某些手机/平板电脑上查看此代码,显示会非常错误。
我认为添加 webkit 规则可以解决问题,但它们似乎什么也没做。
非常感谢这里的任何帮助,谢谢!
在 Internet Explorer 9 上的显示问题:
iPad 4 上的 safari 显示问题:
#wrap-a {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-evenly;
justify-content: space-evenly;
-webkit-flex-direction: row;
flex-direction: row;
align-items: center;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
}
.the-cta-top, .the-cta-bottom {
display: block;
font-weight: 300;
font-size: 16px;
color: #fff;
}
.the-cta-top a:link, .the-cta-top a:visited, .the-cta-middle a:link, .the-cta-middle a:visited, .the-cta-bottom a:link, .the-cta-bottom a:visited {
text-decoration: none;
color: #393939;
}
body {
height: 1000px;
width: 100%;
background: lightgreen
}
.the-cta {
box-sizing: border-box;
width: 150px;min-width: 150px;
height: 150px;
border: 1px solid #fff;
margin-top: 30px;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
justify-content: center;
align-items: center;
display: -webkit-inline-flex;
display: inline-flex;
border-radius: 50%;
}
<article id="wrap-a">
<nav onclick="location.href='#';" class="the-cta">
<span class="the-cta-top">some</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</nav><!--
--><nav onclick="location.href='#';" class="the-cta">
<span class="the-cta-top">more</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</nav>
</article>
最佳答案
IE9 不支持 Flexbox,因此您需要另一种解决方案(最后添加了一个示例)。
当谈到 iPad4 上的 Safari(你的第二张截图)时,它没有正确地间隔它,这是由于 space-evenly
在所有较新的浏览器上都没有完全支持,因此两个圆圈都向左对齐。
在下面的示例中,我使用伪元素来创建相同的效果。但请注意,如果元素开始换行,使用伪元素的这个技巧将不起作用。
堆栈片段
#wrap-a {
display: -webkit-flex;
display: flex;
/* space-evenly is not cross browser supported */
/*-webkit-justify-content: space-evenly; */
/*justify-content: space-evenly; */
/* combine space-between with a pseudo to acheive space-evenly */
-webkit-justify-content: space-between; /* added */
justify-content: space-between; /* added */
-webkit-flex-direction: row;
flex-direction: row;
-webkit-align-items: center; /* added */
align-items: center;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
}
/* added pseudo to acheive space-evenly */
#wrap-a::before, #wrap-a::after {
content: '';
}
.the-cta-top,
.the-cta-bottom {
/*display: block; not needed */
font-weight: 300;
font-size: 16px;
color: #fff;
}
.the-cta-top a:link,
.the-cta-top a:visited,
.the-cta-middle a:link,
.the-cta-middle a:visited,
.the-cta-bottom a:link,
.the-cta-bottom a:visited {
text-decoration: none;
color: #393939;
}
body {
height: 1000px;
/*width: 100%; not needed */
background: lightgreen
}
.the-cta {
box-sizing: border-box;
width: 150px;
min-width: 150px;
height: 150px;
border: 1px solid #fff;
margin-top: 30px;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center; /* added */
align-items: center;
display: -webkit-inline-flex;
display: inline-flex;
border-radius: 50%;
}
<article id="wrap-a">
<nav onclick="location.href='#';" class="the-cta">
<span class="the-cta-top">some</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</nav>
<!--
-->
<nav onclick="location.href='#';" class="the-cta">
<span class="the-cta-top">more</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</nav>
</article>
已更新,版本适用于 IE9。
堆栈片段
#wrap-a {
}
.the-cta-top,
.the-cta-middle,
.the-cta-bottom {
display: block;
font-weight: 300;
font-size: 16px;
color: #fff;
text-align: center;
}
.the-cta-top a:link,
.the-cta-top a:visited,
.the-cta-middle a:link,
.the-cta-middle a:visited,
.the-cta-bottom a:link,
.the-cta-bottom a:visited {
text-decoration: none;
color: #393939;
}
body {
height: 1000px;
background: lightgreen
}
.the-cta {
display: inline-block;
box-sizing: border-box;
width: 150px;
height: 150px;
border: 1px solid #fff;
margin: 30px 0 0 calc( (100% - 300px) / 3);
border-radius: 50%;
}
.the-cta > span {
display: block;
position: relative;
top: 50%;
transform: translateY(-50%)
}
<article id="wrap-a">
<nav onclick="location.href='#';" class="the-cta">
<span>
<span class="the-cta-top">some</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</span>
</nav><!--
--><nav onclick="location.href='#';" class="the-cta">
<span>
<span class="the-cta-top">some</span>
<span class="the-cta-middle"><a href="#">text</a></span>
<span class="the-cta-bottom">here</span>
</span>
</nav>
</article>
关于html - Flexbox 在手机、平板电脑和旧浏览器上的显示问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48366657/
在德国,移动运营商通常会提供一种简单的方法来配置您的手机的 MMS 和 GPRS:在运营商的网站上输入您的电话号码和设备型号后,您会收到一条发送给您的“配置短信”。 我试图从技术角度理解它是如何工作的
我正在开发一个非常复杂的应用程序。它针对手机和平板电脑有不同的布局,我不知道最好的方法。 我听说您可以发布两个不同的应用程序,一个用于移动设备,另一个用于平板电脑,但人们不推荐它。 我应该用两个不同的
我不确定这个问题属于这里....但仍然.... 我的应用程序每 3 分钟与服务器交换一次数据。我在手机覆盖范围内使用蜂窝平板电脑(不是 Wi-Fi)。如果一个人在没有手机覆盖的地方使用它,他将不会获得
我有这样的 CSS: .editTable-body { width: 100%; height:140px; margin-top: 20px; overflow:
我有这个链接,它在移动设备上被设计为按钮,我面临的问题是它在手机和平板电脑上看起来不同。这是因为设备分辨率还是我应该通过 CSS 修复的问题。这是我当前的 CSS CSS border-radiu
大家好,我一个月前开始学习网络开发,但我遇到了背景图片无法在移动设备上正确显示的问题。 我正在使用下面的模板,甚至这个模板也有同样的问题。 问题只是背景图像在移动设备上放大,而不是相应地与屏幕尺寸成比
我一直在尝试为我的网站制作一个导航栏,但是当我移动它时,我导航栏中的列表移动了 40 像素到计算机屏幕的右侧,那里没有任何东西。 你能帮帮我吗? 最佳答案 在您的导航栏样式中,将导航栏的宽度设置为 1
一周以来,我一直不明白为什么我的网站被设计成响应式的,一切正常吗?笔记本电脑即使放在小尺寸的情况下也能完美运行,然后进入我的手机却没有响应。 我试过卸载插件,我更改了主题,但找不到原因。 你能抱住我吗
我在 my website 上实现了以下字体. /* Vivaldi Font */ @font-face { font-family: 'vivaldi'; src: url('as
我正在使用 Angular 4 并构建一个应用程序。它工作正常,但当我在移动设备上运行时出现问题。整个风格发生了变化并分发了整个应用程序。我担心我必须做什么。任何帮助将不胜感激 最佳答案 在表格前取
我目前使用的是 HTC Wildfire 手机的接近传感器。问题在于,如果传感器前方 1 厘米范围内有物体,它只会返回一个 bool 值。 所以,我想问一下市场上是否有一款 Android 手机具有接
根据 this Android C2DM 通过心跳机制使套接字保持 Activity 状态,使其能够接收推送消息。这让我希望我可以通过活跃的 wifi 连接向休眠手机发送消息。 我已经将“delay_
我不希望小型设备的边缘有任何空白。当屏幕已经很小时,使用除屏幕全宽之外的任何东西都会适得其反。 所以我通过wordpress使用了一个主题,但我想出了容器div并且能够修改它,我想让它更窄。 我还声明
有谁知道这些设备之一是否连接到网络,是否可以从 header 或其他方式读取其电话号码? 最佳答案 电话号码不会出现在 HTTP header 中。您的 IP 地址将对网络服务器可见,仅此而已。 编辑
我在使用以下步骤在 android 设备上设置设备所有者时遇到错误。这过去在其他设备上也有效: 执行恢复出厂设置 在设备上启用 Debug模式 从命令行在连接的设备上运行以下命令: adb insta
有人尝试在 Windows Phone 7.1 (RC) 上使用 Udp 单播吗?我有几个问题想问你们。 根据文件http://msdn.microsoft.com/en-us/library/sys
我正在制作一个游戏(仅使用 eclipse 和 android sdk),并且我有一个基于文本文件输入的关卡构建功能。 例如,“levelone.txt”可能包含“[2,5],[14,7],[10,9
我听说要测试 Android 应用程序,您必须在 2 部不同的手机上进行测试(取决于分辨率)推荐哪些手机? 最佳答案 我还建议在一台配备“纯”Android 的设备上进行测试,并且至少在另一台配备 H
我正在使用蓝牙设备手动连接 Android 手机,没有问题。但我的问题是当我启动 Activity 或应用程序时如何自动连接。 我正在引用示例 API 中的蓝牙聊天进行连接。 http://devel
我知道我可以使用 uri 在页面之间传递值,例如: NavigationService.Navigate( new Uri("/DestinationPage.xaml?parameter1=v1",
我是一名优秀的程序员,十分优秀!