blog
copyright ©
creamu Inc. All Rights Reserved.
art direction & design: Kunitaka Kawashimo
code, interaction & photography: creamu Inc.
category: Technology

コーディングに役立つCSSスニペット集

Pocket

「Useful CSS Snippets for Your Coding Arsenal」という記事で、コーディングに役立つCSSスニペット集が紹介されています。 垂直方向のセンタリング
div { width:100px; height:100px; }
div p { line-height:100px; }
画像プリローダー
img
{
background: url(img/preloader.gif) no-repeat 50% 50%;
}
他にもいろいろあるので、一度見てみてください。 Useful CSS Snippets for Your Coding Arsenal