CSS

JavaScriptからCSSでanimationするときの注意点

CSS3のanimationプロパティからキーフレームアニメーションを一括して指定する事が出来る。何処の説明を見てもanimation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-directionの6つを指…

CSSでインライン要素内の文字列を省略

CSS

超今更な話だけどちょっと詰まったので覚え書きとしてメモ。 p { width:100px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-text-overflow:ellipsis; -o-text-overflow: ellipsis; } こんな感じで出来るのはあちこちに書いてあっ…