我正在尝试使用Chris Coyier's CSS将角色带放在我的div上..
.ribbon-wrapper-green {
width: 85px;
height: 88px;
overflow: hidden;
position: absolute;
top: -3px;
right: -3px;
}
.ribbon-green {
font-size: 10px;
font-weight:bold;
color: #111;
text-align: center;
text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
position: relative;
padding: 3px 0;
left: -5px;
top: 15px;
width: 120px;
background-color: #BFDC7A;
background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45));
background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45);
background-image: -moz-linear-gradient(top, #BFDC7A, #8EBF45);
background-image: -ms-linear-gradient(top, #BFDC7A, #8EBF45);
background-image: -o-linear-gradient(top, #BFDC7A, #8EBF45);
color: #6a6340;
-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}
问题在于,当小而且旋转时,文本似乎会破坏。
这是小提琴:
http://jsfiddle.net/H6rQ6/8728/
如果它没有在你的浏览器中破坏,这里是我所面对的快照:
答案 0 :(得分:1)
您可以尝试强制浏览器刷新/重新计算使用font-style播放的文本的布局: http://jsfiddle.net/H6rQ6/8730/
.ribbon-green {
font-weight: bold ;
font-size:12px;
font-family:Sans-Serif;
color: #111;
font-variant: small-caps;
font-size:120%; /* other rules */
}
编辑,实际上,它只是与字体太小而无法顺利渲染。
问候
答案 1 :(得分:1)
我解决了这个问题,感谢showdev,使用
-webkit-transform: rotate(45deg) translate3d( 0, 0, 0);
这是因为默认情况下在chrome中对字体进行抗锯齿处理,并使用translated3d(0,0,0)
使它们变得平滑。
更多信息:Wonky text anti-aliasing when rotating with webkit-transform in Chrome
答案 2 :(得分:0)
这完全是一个浏览器错误。你无法真正避免它。