cs *html
You are currently viewing a revision titled "cs *html", saved on 2024年11月22日 9:22 PM by Thapa Ramu | |
---|---|
タイトル | cs *html |
コンテンツ | <html>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<!-----ここはCSS--------------------------------------->
<style>
body {
color: #0033cc;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: medium;
}
#sample1 {
line-height: normal;
}
#sample2 {
line-height: 3em;
}
</style>
<!-----ここまで-------------------------------------->
<title>授業用テンプレート</title>
<link rel=”stylesheet” href=”test.css” />
</head>
]<body>
<p id="sample1">
<code>line-height: normal</code>
Line-height プロパティは、行の高さ(インライン要素のボックスの高さ)を指定します。このプロパティをインライン要素に対して設定した場合はその要素のボックスの高さを指定したことになり、ブロックレベル要素に対して設定した場合はそこに含まれるインライン要素のボックスの高さの最小値を指定したことになります。
</p>
<p id="sample2">
<code>line-height: 3em</code>
Line-height プロパティは、行の高さ(インライン要素のボックスの高さ)を指定します。このプロパティをインライン要素に対して設定した場合はその要素のボックスの高さを指定したことになり、ブロックレベル要素に対して設定した場合はそこに含まれるインライン要素のボックスの高さの最小値を指定したことになります。
</p>
</body>
<!--------------------------------------------------->
</html> |
抜粋 | |
脚注 |