ホームページ  >  記事  >  ウェブフロントエンド  >  CSS フォントはフォントの複数の変換を制御します

CSS フォントはフォントの複数の変換を制御します

青灯夜游
青灯夜游転載
2021-01-02 09:31:002024ブラウズ

CSS フォントはフォントの複数の変換を制御します

チュートリアルの推奨事項: css ビデオ チュートリアル

CSS フォント プロパティは、フォント ファミリー、サイズ、太字、スタイル (斜体など)、および変形を定義します。 (スモールキャップなど) font-family はフォントを制御します。各コンピュータ システムにインストールされているフォントは異なるため、基本的には Heilongti、Songti、Microsoft Yahei の 3 つのフォントがあります。

font-sizeフォント サイズを制御します。フォント サイズを設定するときは、幅と高さを設定します。一般に、コンピュータ システムのデフォルトのフォント サイズは 16 ピクセルなので、フォントサイズは 16px 未満であってはなりません。1em=16px;

font-weight:bold;/*コントロール フォントのウェイトは通常 100 ~ 900 です。一般的に使用されるライト (細字) 標準です。 (通常) ボールド ボールド*/

この font-style については、デフォルトは通常です。font-style: italic; italic を設定すると、実際にはSame as this907fae80ddef53131f3292ee4f81644bd1c6776b927dc33c5d9114750b586338 効果はほぼ同じで、テキスト間の間隔に使用される行の高さがその高さと等しい場合、垂直方向の中央に配置されます。

通常、フォント フォントの略語: font:style Weight size/line-heigt font-family /*表示する必要がある 2 つの要件は、size と font-family*/

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>css常用样式font字体的多种变换</title>
    <style>
        div{
            font-family: &#39;Microsoft YaHei&#39;;/*微软雅黑*/
            /* font-family: &#39;Lucida Sans&#39;,&#39;Lucida Sans Regular&#39;, 
            &#39;Lucida Grande&#39;, &#39;Lucida Sans Unicode&#39;, Geneva,
             Verdana, sans-serif; */
            /*字体加上双引号或者单引号,当有多个字体的时候,中间逗号分开*/
            color:#f90;
            font-size: 24px;/*控制字体大小*/
            font-weight: bold;
            /*控制字重 常用lighter(细体) normal(正常)bold加粗 */
            font-style: italic;/*等同于em*/
            line-height: 30px;
        }
        /*font字体的简写:font:style weight size/line-heigt font-family*/
        /*要求必须出现的2个是 size font-family*/
        p{  
            font: 24px/1.5em &#39;Lucida Sans&#39;,&#39;Lucida Sans Regular&#39;,
             &#39;Lucida Grande&#39;, &#39;Lucida Sans Unicode&#39;, 
             Geneva, Verdana, sans-serif;
            letter-spacing: 1px;/*英文字母间距*/
            word-spacing: 10px;/*英文单词间距*/
        }
        P::first-letter{
            text-transform: capitalize;
        }/*第一个字母::first-letter*/
        p::first-line{
            color:red;
        }/*第一行::first-line*/
    </style>
</head>
<body>
    <div>技术为王世界,欲问青天山顶景色是否独好技术为王世界,
    欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好技术为王世界,
    欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好技术为王世界,
    欲问青天山顶景色是否独好技术为王世界,
        欲问青天山顶景色是否独好技术为王世界,欲问青天山顶景色是否独好 </div>
    <p>Technology is king world, I want to ask if the scenery on 
    the top of Qingtian Mountain is the king of technology, 
        I want to ask whether the scenery of Qingtian Peak is 
        the king of technology. If the technology is the king of the world, 
        I would like to ask whether the scenery on the top of 
        Qingtian Mountain is the king of the world. Is the scenery good?</p>
</body>
</html>

スタイルについて継承 質問/*テキストに関連するスタイルは継承されます*/コードは以下に示されています:

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>index</title>
    <style>
        p{
            font-size: 20px;
            font-family: 微软雅黑;    
            color:#f00;
            font-weight:bold;
            font-style:italic;
            word-spacing:15px;
        }

    </style>
</head>
<body>
    <div>
        <p><span>linux php linux</span></p>
        <p><span>linux linux php linux</span></p>
        <p><span>linux linux php linux</span></p>
        <p><span>linux linux php linux</span></p>
    </div>    
</body>
</html>

プログラミング関連の知識については、プログラミング教育を参照してください。 !

以上がCSS フォントはフォントの複数の変換を制御しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はcnblogs.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。