0

我试图复制边缘使用的评级框的基本效果(你可以在这里看到它:http ://www.theverge.com/2012/5/9/3002183/airplay-speaker-review-iphone底部),但我的文本对齐一直存在问题。现在我有这个:

            <div class="product-score-box">
                <div class="score"> 
                    <span class="totalscore">
                        <?php echo aff_the_rating();?>
                    </span>
                    <span class="ourscore">Our Score</span> 
                </div>
                <a href="#" class="product-score-cta">Leave Review</a>
            </div>

CSS:

            .product-score-cta { right:0; left: 0; bottom:5px; color:white;}
            .ourscore {bottom:8px;}
            .totalscore {top:10px; font-size:70px; line-height:70px;}
            .ourscore,.totalscore,.product-score-cta {position:absolute;  }
            .score {
                height:115px;
                color:white;
                background:#f48b1b;
                position:relative;
                }

            .product-score-box {
                display: block;
                position: absolute;
                top:20px;
                right:10px;
                color: white;
                font-family: 'DINCond-MediumRegular';
                background: black;
                text-align: center;
                z-index: 20;
                overflow: hidden;
                font-size: 16px;
                line-height: 100%;
                width:130px;
                height:140px;
                }       

在 Firefox 上,.score 中的文本没有与中心对齐,而在 Chrome 中,它的对齐方式很奇怪(好像它是合理的?或其他东西)。我在绝对定位方面绝对糟糕!如果有人可以帮助我获得类似的效果,我将永远感激不尽。

编辑:http: //jsfiddle.net/wQrZr/

4

2 回答 2

1

因此,鉴于您的标记和标准字体选择,我已经在多大程度上复制了它,但布局应该是正确的。

为框内的元素设置绝对宽度并给它们一个left: 0;似乎可以直接完成,并且在离开评论元素中添加了一些额外的样式使其更接近边缘

的CSS:

* { font-family: Tahoma; }   

.product-score-cta { right:0; left: 0; bottom:5px; font-size: 14px; text-decoration: none; color: #EEE;}
            .ourscore {bottom:12px; font-size: 18px; font-style: italic;}
            .totalscore {top:10px; font-size:70px; line-height:70px;width:130px; position: absolute;}
            .ourscore,.totalscore,.product-score-cta {position:absolute; width: 130px; left: 0px;}
        .score {
            height:115px;
            color:white;
            background:#f48b1b;
            position:relative;
            }

        .product-score-box {
            display: block;
            position: absolute;
            top:20px;
            right:10px;
            color: white;
            font-family: 'DINCond-MediumRegular';
            background: black;
            text-align: center;
            z-index: 20;
            overflow: hidden;
            font-size: 16px;
            line-height: 100%;
            width:130px;
            height:140px;
            }   ​

参考:

于 2012-05-11T01:46:57.480 回答
0

1) 移除 .totalscore 和 .ourscore 的绝对定位 2) 相对定位得分 3) 绝对定位“ourscore”标签

这是:http: //jsfiddle.net/hammerbrostime/PGKNU/

于 2012-05-11T01:46:33.523 回答