变换属性使我的文本模糊

时间:2015-08-01 21:40:14

标签: twitter-bootstrap text

myplot <- myplot + geom_hline(aes(yintercept = z), hline.data)

可以在CodePen上找到一个示例:http://codepen.io/LuckyDaniel/pen/YXdxrr

我试图通过附加班级&#39; vcenter-transform&#39;来垂直对齐我的容器。问题是我的容器在伪选择器(clearfix)上显示:table,这使我的所有文本都模糊不清。

有没有办法解决这个问题?

2 个答案:

答案 0 :(得分:1)

将它添加到Bootstrap中的容器中。修复了你提供的codepen中的问题。

-webkit-filter: blur(0px);

对于其他浏览器:

-moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);

答案 1 :(得分:0)

似乎删除content: '';修复了您的问题:

.container:before, .row:before {
    display: table;
}

或者,添加position: absolute;似乎也可以解决您的问题:

.container:before, .row:before {
    display: table;
    content: "";
    position: absolute;
}