>  기사  >  웹 프론트엔드  >  CSS 글꼴은 글꼴의 여러 변형을 제어합니다.

CSS 글꼴은 글꼴의 여러 변형을 제어합니다.

青灯夜游
青灯夜游앞으로
2021-01-02 09:31:002026검색

CSS 글꼴은 글꼴의 여러 변형을 제어합니다.

튜토리얼 추천: css 비디오 튜토리얼

CSS 글꼴 속성은 텍스트의 글꼴 모음, 크기, 굵기, 스타일(예: 기울임꼴) 및 왜곡(예: 작은 대문자)을 정의합니다. 글꼴 모음은 글꼴을 제어합니다. 개별 컴퓨터에 따라 시스템에 설치되는 글꼴은 다양하지만 기본적으로 Black, Song, Microsoft Yahei 3가지 글꼴이 탑재되어 있습니다.

font-size는 글꼴 크기를 설정할 때 너비와 높이를 설정합니다. 일반적으로 컴퓨터 시스템의 기본 글꼴 크기는 16px이므로 글꼴 크기는 그렇지 않습니다. 16px보다 낮음, 1em=16px ;font-size控制字体大小,我们设置字体大小是设置它的宽度,它的高度一般电脑系统默认字体大小是16px,所以字体大小尽量不要低于16px,1em=16px;

font-weight: bold;/*控制字重 一般是100-900 常用lighter(细体) normal(正常)bold加粗 */

至于这个font-style

font-weight:bold;/*제어 글꼴 두께는 일반적으로 100-900이며 일반적으로 사용되는 더 가벼움(좋은 본문) 보통(보통) 굵게*/

font-style의 경우 일반적으로 기본값은 일반이며, 글꼴 스타일: italic을 설정하면 실제로 이 907fae80ddef53131f3292ee4f81644b0fcc9a421f31cf83e79fe56c0bce8e79; 텍스트 사이 간격에 사용된 줄 높이가 높이와 같으면 세로로 가운데에 배치됩니다.

일반적으로 글꼴 글꼴의 약어: 글꼴:스타일 가중치 크기/line-heigt 글꼴-가족 /*표시되어야 하는 두 가지 요구 사항은 크기와 글꼴 가족입니다*/

<!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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 cnblogs.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제