print 'Hello YKazu'

('Python', 'Javascript')

css

display属性の確認

display属性はjQueryで簡単に確認出来る <h1 class="h1">Yoshida</h1> <img src="yoshida.png" alt="yoshida" class="img"> console.log($('.h1').css('display')); // block console.log($('.img').css('display')); // inline

高さ固定ボックスで、文字を中央に配置

css

heightとline-heightを同一 text-alignはceter header { height: 200px; line-height: 200px; text-align: center; }