2013-12-10 19 views
1

-moz-box-pack(或box-pack)的justify屬性似乎在Firefox中被忽略。在Firefox中的box-pack(-moz-box-pack)忽略了Justify屬性

Live example從我們的網站。每行中的數字應該是右對齊的,它們在Chrome中。

任何線索?

HTML CSS &:

<a class="category_box box_sizing" href="/itunes-store/apps/free-apps/category/all-apps?itunes-store-id=888-36" itunes_id="888-36" path="/36/888-36"> 
      <div class="name">All Apps</div> <div class="num_apps">43</div> 
     </a> 


.page_list .list a { 
    color: #5C5C5C; 
} 
.page_list .category_box { 
    -moz-box-pack: justify; 
    border-bottom: 1px solid #CCCCCC; 
    display: -moz-box; 
    padding: 15px 10px; 
    width: 100%; 
} 
.box_sizing { 
    -moz-box-sizing: border-box; 
} 
a { 
    color: #5E87B0; 
    text-decoration: none; 
} 
+0

看起來像一個渲染錯誤給我。它似乎被支持。 –

+0

你可以發佈這個作爲答案嗎? – Crashalot

回答