我有一个页面,渲染后应该返回云标签。这一切都很好。但是标签的对齐方式不在 Mozilla 的中心。标签在 chrome 和 I7 中位于中心,但在 Mozilla 中位于左侧。
我的.html:
{% extends "base.html" %}
{% block title %} Tag Cloud {% endblock %}
{% block head %} Tag Cloud {% endblock %}
{% block content %}
<div id="tag-cloud">
{% for tag in tags %}
<a href="/tag/{{tag.name|urlencode}}/" class="tag-cloud-{{tag.weight}}">{{ tag.name|escape }}</a>
{% endfor %}
</div>
{% endblock %}
我的.css:
#nav {
float:right;
}
input {
display:block;
}
ul.tags, ul.tags li {
list-style: none;
margin: 0;
padding: 0;
color: blue;
display: inline;
}
#tag-cloud {
text-align:center;
}
#tag-cloud a {
margin: 0 0.2em;
}
.tag-cloud-0 { font-sie:100; }
.tag-cloud-1 { font-sie:120; }
.tag-cloud-2 { font-sie:140; }
.tag-cloud-3 { font-sie:160; }
.tag-cloud-4 { font-sie:180; }
.tag-cloud-5 { font-sie:200; }