[CSS] 基本メモ: キーフレームアニメーション (animation)[CSS] 基本メモ: キーフレームアニメーション (animation)
サンプル <style> #test1 { width: 50px; height: 50px; -webkit-animation: test1 5s linear 1s infinite alternat […]
サンプル <style> #test1 { width: 50px; height: 50px; -webkit-animation: test1 5s linear 1s infinite alternat […]
サンプル <style> div { width: 100px; height: 100px; padding: 10px; margin: 30px; background-color: orange; b […]
サンプル <style> p { background-color: lightsalmon; padding: 20px; } </style> <style> p.test1 im […]
サンプル <style> p { background-color: lightsalmon; padding: 20px; } </style> <style> p.test1 im […]
サンプル <style> p { background-color: lightsalmon; padding: 20px; } </style> <style> p.test1 im […]
サンプル <style> p { background-color: lightsalmon; padding: 20px; } </style> <style> p.test1 im […]
書式 radial-gradient(開始位置と角度, 形状とサイズ, 開始色, 途中色, 終了色); Google Chrome 及び Safariの実装 -webkit-gradient(radial, 開始位置, […]
書式 linear-gradient(開始位置と角度, 開始色, 途中色, 終了色); (Google Chrome 及び Safariの実装) -webkit-gradient(linear, 開始位置, 終了位置, […]
書式 水平方向の距離 垂直方向の距離 影のぼかし半径 影の色 サンプル <style> body { font-family: Impact; font-size: 40px; color: red; } & […]
書式 box-shadow: 水平方向の距離 垂直方向の距離 ぼかし距離 広がり距離 影の色 inset; サンプル <style> div { width: 100px; height: 20px; pad […]
RGBの色成分に加えてアルファ値が指定できる。 サンプル <style> div { width: 100px; height: 20px; padding: 10px; margin: 30px; back […]
ボックスの角を丸めることができる。 サンプル <style> div { width: 100px; height: 100px; padding: 10px; margin: 30px; backgroun […]
ブラウザが暫定実装しているスタイルであることを示す識別子。 -webkit- Google Chrome, Safari -moz- Firefox -o- opera -ms- Internet Explorer 例 […]
コマンドプロンプトで実行される外部プログラムをバッチで繰り返し実行したい。だけど、実行中は別の作業を行いたいので、外部プログラムが実行されるたび新しいウィンドウが開いてフォーカスが奪われるのはいただけない。 別ウィンドウ […]
擬似クラスはクラスが特定の状態にある場合に限って適用されるスタイル。たとえば以下。 :link :visited :hover :active :focus サンプル a:link { color: blue; } a: […]
cursor move help wait pointer など サンプル <style> #hello { width: 200px; height: 200px; background-color: ye […]
list-style-type none (無し) disc (白い丸) circle (黒い丸) square (黒い四角) lower-roman (小文字ローマ数字) upper-roman (大文字ローマ数字) […]
left 左寄せされた要素に対する回り込みを解除。 right 右寄せされた要素に対する回り込みを解除。 both 全ての要素に対する回り込みを解除。 none 回り込みを解除しない。 サンプル <h2>He […]
left 左寄せ。続く内容はその右側に回り込む。 right 右寄せ。続く内容はその左側に回り込む。 none 指定無し。 サンプル <div> <h2>Hello</h2> Lore […]
static 位置指定しない。 relative 相対位置を指定する。staticで配置される位置が基準。 absolute 絶対位置を指定する。親要素の左上が基準。親要素がstatic配置でなければウィンドウ左上が基準 […]