100px x 100px の丸いボックスの中央にテキストを配置しようとしています。
私が取り組んでいるサイトはこちらです: http://www.blackcountrydesigns.co.uk/the1theme/
これを達成するために、次のjQueryスクリプトを使用しています
$(document).ready(function()
{
$('.header .menu li a').each(function(){
padding = (100 - $(this).innerHeight())/2
alert($(this).height());
$(this).css({'padding-top' : padding+'px' , 'padding-bottom' : padding+'px'})
});
});
私が抱えている問題は、ボックスの一部または2行が1つだけであると考えていることです。
あなたが助けてくれることを願っています!
ありがとう