Chrome中的旋转DIV边缘模糊

时间:2011-08-16 10:04:28

标签: html css google-chrome alias

我有一个音频帖子,其中的信息是旋转的DIV,显示在专辑封面上。要查看我的意思,请转到here (the page).左下角的区域是信息。在Chrome中查看时,您会看到DIV的边缘模糊不清。有没有办法“混淆”DIV,使它们显得清晰?我知道这不是一个解决方案,因为Firefox完美地显示它们。

.audioBox {
position:absolute;
bottom:160px;
margin-left:-11px;
-webkit-transform: rotate(-90deg); 
-moz-transform: rotate(-90deg); 
z-index:3;
width:343px;
}

.boxify {
margin:1px;
padding:5px;
float:left;
bottom:0;
width:329px;
}

.box {
background:#000; 
padding:5px;
padding-left:10px;
padding-right:10px;
margin-left:-5px;
}

<div class="audioHolder">
<div class="audioBox">

<div class="boxify" id="song">

                    <img id="audioBubble"    
src="http://static.tumblr.com/ux4v5bf/JC6lpv4v1/audio.png">

{block:TrackName}
<span class="box">{TrackName}</span>
{/block:TrackName}
</div>

<div class="boxify" id="artist">
{block:Artist}
<span class="box">{Artist}</span>
{/block:Artist}
</div>

<div class="boxify" id="label">
<span class="box">{PlayCountWithLabel}</span>
</div>

<div class="boxify" id="download">
<span class="box">Download
{block:ExternalAudio}
<a href="{ExternalAudioURL}">Download</a>
{/block:ExternalAudio}</span>
</div>

</div>

解决方案:我将背景颜色替换为相同颜色的背景图像。 :-)希望它可以帮助其他人解决类似的问题。

1 个答案:

答案 0 :(得分:3)

我知道我迟到了但是......

我现在有类似的问题,在我的情况下,改变大小有帮助,只需使用偶数

.blurry {
    left: 100px;
    height: 30px;
    width: 135px;
}

.sharp { 
    left: 200px;
    height: 30px;
    width: 136px;  
}

http://jsfiddle.net/_hags/9e4cS/