Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
display:table-cellJQuery UIの垂直スライドは、テキストを垂直方向に中央揃えするために使用されているため、Firefoxでは機能しません.label。
display:table-cell
.label
参照:JSFiddle
Firefoxで修正し、垂直方向の中央揃えを維持するにはどうすればよいですか?
ラベルの外側に div を作成し、代わりに div をアニメーション化するだけです。
HTML:
<div id="labels"> <div> <p class="label" data-groupl="1">Vertically centered text</p> </div> </div>
jQuery:
$(".label").parent().show("slide", { direction: "right" }, 1000);