正如在这个jsfiddle示例中可以看到的那样,我试图得到评论数量的计数(在示例中为12)在评论气泡图像上显示为文本:
HTML:
<ul id="top">
<li><a href="/comments"><div id="commentlink">12</div></a></li>
</ul>
CSS:
#commentlink
{
background: url("http://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/kopetestatusmessage.png") no-repeat 0 0;
width:128px;
height:128px;
}
这个想法是让用户能够看到存在多少条评论,然后点击气泡图像以重定向到评论页面。
但是,文字出现在图像的左侧,而不是图像中间的死角。
我需要做些什么才能让文字显示在图像的中心?
答案 0 :(得分:2)
将DIV
嵌套在A
内是无效的标记。
试试这个......
演示:http://jsfiddle.net/wdm954/c337Z/5/
HTML ...
<ul id="top">
<li>
<a href="/comments" class="commentlink">12</a>
</li>
</ul>
... CSS
.commentlink {
display: block;
background: url("http://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/kopetestatusmessage.png") no-repeat 0 0;
width:128px;
height:128px;
text-align: center;
padding-top: 40px;
}
答案 1 :(得分:0)
我认为这正是您所寻找的:http://jsfiddle.net/75JsT/
答案 2 :(得分:0)
这个怎么样&gt; http://jsfiddle.net/lipelip/c337Z/15/
答案 3 :(得分:0)
您可以自定义/删除计数器上的渐变,并使用innerHTML“counterField”设置计数器的值。请参阅此示例http://jsfiddle.net/3czxB/2/
<div id="noti_Container">
<img height="48" width="48" src="http://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/kopetestatusmessage.png" />
<div id="counterField" class="noti_bubble">1000</div>
</div>
使它工作/漂亮的CSS(在IE中不是很好)
#noti_Container {
position:relative;
border:1px solid blue;
width:48px;
height:48px;
}
.noti_bubble {
position:absolute;
top: 10px;
right:10px;
padding:1px 2px 1px 2px;
background: rgb(255,175,75); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,175,75,1) 0%, rgba(255,146,10,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,175,75,1)), color-stop(100%,rgba(255,146,10,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffaf4b', endColorstr='#ff920a',GradientType=0 ); /* IE6-9 */
border: 1px solid gray;
color:white;
font-weight:bold;
font-size:0.65em;
border-radius:30px;
box-shadow:1px 1px 1px gray;
}