002、常用文字設定:font-size、font-family、font-weight、font-style、color、line-height

1、文字大小:font-size

<style type="text/css">
#a1{ font-size: 16px; }
#a2{ font-size: 20px; }
#a3{ font-size: 24px; }
</style>

<p id="a1">今天天氣不錯</p>
<p id="a2">今天天氣不錯</p>
<p id="a3">今天天氣不錯</p>

今天天氣不錯

今天天氣不錯

今天天氣不錯


<style type="text/css">
#b1{ font-size: 1rem; }
#b2{ font-size: 2rem; }
#b3{ font-size: 3rem; }
</style>

<p id="b1">今天天氣不錯</p>
<p id="b2">今天天氣不錯</p>
<p id="b3">今天天氣不錯</p>

今天天氣不錯

今天天氣不錯

今天天氣不錯


2、粗體:font-weight

<style type="text/css">
#c1{ 
    font-size: 2rem; 
    font-weight: bold; 
}
</style>

<p id="c1">今天天氣不錯</p>

今天天氣不錯


3、斜體:font-style

<style type="text/css">
#d1{ 
    font-size: 2rem; 
    font-style: italic;
}
</style>

<p id="d1">今天天氣不錯</p>

今天天氣不錯


4、字體:font-family

<style type="text/css">
#e1{ 
    font-size: 2rem; 
    font-family: verdana, "微軟正黑體";
}
</style>

<p id="e1">Good morning! 今天天氣不錯</p>

Good morning! 今天天氣不錯


<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style type="text/css">
#k1{ 
    font-size: 2rem;
    font-family: "Sofia";       /* 字型名稱 */
}
</style>

<p id="k1">Good morning! 今天天氣不錯</p>

Good morning! 今天天氣不錯


5、文字顏色:color

<style type="text/css">
#g1{ 
    font-size: 2rem; 
    font-family: verdana, "微軟正黑體";
    color: blue;
}
#f2{ 
    font-size: 2rem; 
    font-family: verdana, "微軟正黑體";
    color: #ff6633;
}
</style>

<p id="f1">Good morning! 今天天氣不錯</p>
<p id="f2">Good morning! 今天天氣不錯</p>

Good morning! 今天天氣不錯

Good morning! 今天天氣不錯


6、行高:line-height

<style type="text/css">
#g1, #g2, #g3{ 
    font-size: 2rem; 
    font-family: verdana, "微軟正黑體";
    line-height: 100px;
    border: 1px solid gray;
}
</style>

<p id="g1">Good morning! 今天天氣不錯</p>
<p id="g2">Good morning! 今天天氣不錯</p>
<p id="g3">Good morning! 今天天氣不錯</p>

Good morning! 今天天氣不錯

Good morning! 今天天氣不錯

Good morning! 今天天氣不錯

shape
shape