css - Bootstrap 3 下拉箭头在移动设备上显示不正确

标签 css twitter-bootstrap mobile

我在使用 Bootstrap 的标准插入符时遇到了这个奇怪的问题:在 Chrome 的开发人员设备工具上它显示正确,但是当我在移动设备上查看同一页面时,箭头呈现为矩形。我不明白为什么?有人可以帮忙吗?

The icon is not correctly displayed

Test Page, view it with mobile to see the error

(这个问题和我查的其他问题不一样,因为问题一般出在手机上)

最佳答案

我遇到了同样的问题,通过将其添加到我的 css 中解决了这个问题:

@media (max-width: 767px){
  .caret{
    border-top: 4px solid;
  }
}

关于css - Bootstrap 3 下拉箭头在移动设备上显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29987058/

相关文章:

javascript - 一次显示/隐藏 Javascript

css - 返回 CSS 动画起始位置

html - CSS 中的 Font Awesome 边框

javascript - Bootstrap 3 popover 在跨两条线上使用时位置错误

javascript - 如何抽象一个JavaScript文件?

android - 我在哪里可以了解如何使网站适应多种 Android 分辨率?

javascript - 以数据标签中的值作为目标元素

javascript - 外部元素在外部 ng-repeat 中访问数据

jquery - Bootstrap navbar-fixed-top 隐藏页面内容

spring - 我怎样才能使移动/网络客户端和后端之间的通信完全可信?