移动设备上无法正确显示Bootstrap 3下拉箭头

时间:2015-05-01 12:43:35

标签: css twitter-bootstrap mobile

我对Bootstrap的标准插入符号有这个奇怪的问题:在Chrome的开发者设备工具上它显示正确,但当我在移动设备上查看同一页面时,箭头呈现为矩形。我无法弄清楚为什么?请帮忙吗?

The icon is not correctly displayed

Test Page, view it with mobile to see the error

(这个问题与我检查的其他问题不同,因为问题通常在手机上)

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题,并将其添加到我的css中解决了它:



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