2015-01

スポンサーリンク
基本図形

円形 – css circle –

「円形」の描画。値の指定で角丸から正円まで出来ます。また、borderの使い方で色々と出来そうです。htmlhtml<div class="circle"></div>css.circle { width: 100px; height: 1...
基本図形

長方形 – css rectangle –

「長方形」の描画。基本何もしておりませんが、borderの使い方で色々と出来そうです。html<div class="rectangle"></div>css.rectangle { width: 160px; height: 100px;...
基本図形

四角形 – css Square –

「四角形」の描画。基本何もしておりませんが、borderの使い方で色々と出来そうです。html<div class="square"></div>css.square { width: 100px; height: 100px; backg...
cssの基本

transform: rotate (要素の回転)

マウスを乗せてくださいtransform: rotateプロパティは「要素の回転」を指定する場合に使用します。html<div class="square_transform_rotate"></div>css/* 四角形 回転 */.sq...
cssの基本

radial-gradient (円形グラデーション)

radial-gradientプロパティは「円形グラデーション」を指定する場合に使用します。html<div class="square_radial_gradation"></div>css.square_radial_gradation...
cssの基本

linear-gradient (線形グラデーション)

linear-gradientプロパティは「線形グラデーション」を指定する場合に使用します。html<div class="square_gradation"></div>css.square_gradation { width: 100p...
cssの基本

box-shadow (影)

box-shadowプロパティは「ボックス要素に影」を指定する場合に使用します。html<div class="square_box_shadow"></div>css.square_box_shadow { width: 100px; h...
cssの基本

border-radius (角丸)

border-radiusプロパティは「角丸」を指定する場合に使用します。 html<div class="square_border_radius"></div>css.square_border_radius { width: 100p...
cssの基本

border (枠線)

borderプロパティは「枠線」を指定する場合に使用します。html<div class="square_border"></div>css.square_border { width: 100px; height: 100px; back...
cssの基本

background-color (背景色)

background-colorプロパティは「背景色」を指定する場合に使用します。html<div class="square"></div>css.square { width: 100px; height: 100px; backgro...
スポンサーリンク