国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Saiz tutorial asas CSS, sifat fon dan teks

Atribut saiz CSS

  • lebar: lebar elemen, pastikan anda menambah unit px.

  • tinggi: ketinggian unsur.


harta fon CSS

  • saiz fon: saiz teks. Contohnya: font-size:14px;

  • font-family: font. Contohnya: font-family: Microsoft Yahei;

  • font-style: italic, value: italic. Contohnya: gaya fon:italic;

  • berat fon: tebal, nilai: tebal. Seperti: font-weight:bold;


Sifat teks CSS

  • warna: warna teks

  • hiasan teks: baris hiasan teks, nilai: tiada, garis bawah, atas, garisan (Strikethrough)

  • penjajaran teks: penjajaran mendatar teks, nilai: kiri, tengah, kanan

  • tinggi garis: garis Tinggi, anda boleh menggunakan nilai tetap atau peratusan. Contohnya: line-height:24px; line-height:150%;

  • text-indent: Indent baris pertama. Contohnya: text-indent:28px;

  • jarak-huruf: jarak perkataan.

Contohnya seperti berikut

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
    <style type="text/css">
    h1{
        color:red;
        width:350px;
        text-align:center;
        font-family:微軟雅黑;
    }
    p{
         line-height:150%;
         text-indent:28px;
         font-family:楷體;
    }
    .box{
        font-style:italic;
        font-weight:bold;
        text-decoration:underline;
    }
    </style>
    </head>
    <body>
        <h1>習近平心中的互聯(lián)網(wǎng)</h1>
        <p>互聯(lián)網(wǎng)是20世紀最偉大的發(fā)明,它正在將人類“<span class="box">一網(wǎng)打盡</span>”,人們在不知不覺中已經(jīng)融入了互聯(lián)網(wǎng)生態(tài),互聯(lián)網(wǎng)讓世界變成了“雞犬之聲相聞”的地球村。</p>
    </body>
</html>


Meneruskan pembelajaran
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <style type="text/css"> h1{ color:red; width:350px; text-align:center; font-family:微軟雅黑; } p{ line-height:150%; text-indent:28px; font-family:楷體; } .box{ font-style:italic; font-weight:bold; text-decoration:underline; } </style> </head> <body> <h1>習近平心中的互聯(lián)網(wǎng)</h1> <p>互聯(lián)網(wǎng)是20世紀最偉大的發(fā)明,它正在將人類“<span class="box">一網(wǎng)打盡</span>”,人們在不知不覺中已經(jīng)融入了互聯(lián)網(wǎng)生態(tài),互聯(lián)網(wǎng)讓世界變成了“雞犬之聲相聞”的地球村。</p> </body> </html>