CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSのフォントの太さ


CSS font-weightプロパティは、要素のテキスト文字の太字を定義するために使用されます。

構文

CSSfont-weightプロパティの構文は次のとおりです-

Selector {
   font-weight: /*value*/
}

次の例は、font-weightプロパティ-

を示しています。
<!DOCTYPE html>
<html>
<head>
<style>
div {
   margin: 3px;
   font-family: "Ink Free";
   width: 30%;
   font-size: 24px;
}
#one {
   font-weight: normal;
   border-bottom: 2px dashed greenyellow;
}
#two {
   font-family: "Kristen ITC";
   font-weight: bolder;
   border-bottom: 2px dashed cornflowerblue;
}
#three {
   font-weight: bold;
   border-bottom: 2px dashed chocolate;
}
</style>
</head>
<body>
<div id="one">First Demo Text</div>
<div id="two">Another Demo Text</div>
<div id="three">Last Demo Text</div>
</body>
</html>

出力

これにより、次の出力が得られます-

CSSのフォントの太さ

<!DOCTYPE html>
<html>
<head>
<style>
[class|=lis] {
   font-style: italic;
   font-weight: bold;
}
li[class|="lis-ul"] {
   background-color: cadetblue;
   font-family: Helvetica;
   font-weight: 100;
   color: gainsboro;
   width: 20%;
}
</style>
</head>
<body>
<h2>Tutorials</h2>
<ol>
<li><p>C#</li>
<li class="lis-ul-2">DBMS</li>
<li class="lis-3">OS</li>
<li>Java</li>
<ul>
<li class="lis-ul-one">Core Java</li>
<li class="lis">Advance Java</li>
</ul>
</ol>
</body>
</html>

出力

これにより、次の出力が得られます-

CSSのフォントの太さ


  1. CSSのフォントバリアント

    font-variantプロパティは、font-variant-caps、font-variant-numeric、font-variant-alternates、font-variant-ligatures、およびfont-variant-east-asianを指定するために使用されます。 構文 font-variantプロパティの構文は次のとおりです- Selector {    font-variant: /*value*/ } 次の例は、CSSフォントバリアントプロパティ-を示しています。 例 <!DOCTYPE html> <html>

  2. CSSのフォントサイズ

    CSS font-sizeプロパティは、フォントのサイズを設定するために使用されます。値は、パーセンテージ、ピクセル、cm、ポイント、emなどの単位、および絶対キーワードで指定できます。相対値はアクセシビリティを最大化します。デフォルトのフォントサイズは16pxまたは12ptです。 構文 CSSfont-sizeプロパティの構文は次のとおりです- Selector {    font-size: /*value*/ } 次の例は、CSSのfont-sizeプロパティ-を示しています。 例 <!DOCTYPE html> <html> <he