LoginSignup
2
1

More than 5 years have passed since last update.

cssの意外と知らない用語

Last updated at Posted at 2017-02-13

cssを書く機会が多い人が覚えたらストレスフリーになる用語

border

divの周りに黒い枠を入れるスクリーンショット 2017-02-13 11.21.31.png

div {

border: 1px solid #000000;

}

種類
none
枠線なし(ボーダーの幅の値は強制的に0になる)
dotted
点線(丸い点線)
dashed
破線(四角い点線)
solid
実線
double
二重線
groove
立体枠(窪み)
ridge
立体枠(隆起)
inset
立体枠(内側全体が窪み)
outset
立体枠(内側全体が隆起)

また、border-radiusで角を丸くできます。下記のようにかけます。


border-radius: 5px;

letter-spacingプロパティ

文字の間隔を設定できる

letter-spacing: 1px

displayプロパティ

displyプロパティは解釈が難しいので表で表示します。

block・・・ブロックボックスを生成する
inline-block・・・表示はインラインボックスだが、ブロックボックスのように高さや横幅、margin、paddingを指定できる。
table・・・table要素のような表示になる
table-cell・・・td要素のような表示になる

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1