【CSS】幅(width)と高さ(height)を調整する

構文

[highlight_css]
width:100px;
height:80px;
[/highlight_css]

説明

widthプロパティは『要素の横幅』を調整する。
heightプロパティは『要素の高さ』を調整する。

使用例

HTML
[highlight_css]

Google

[/highlight_css]
CSS
[highlight_css]
p {
width: 100px;
height: 80px;
}
[/highlight_css]

結果
※分かりやすいように背景色を水色にしています

Google

CSS

Posted by phi30973