Saiz tutorial a...LOG MASUK

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>习近平心中的互联网</h1>
        <p>互联网是20世纪最伟大的发明,它正在将人类“<span class="box">一网打尽</span>”,人们在不知不觉中已经融入了互联网生态,互联网让世界变成了“鸡犬之声相闻”的地球村。</p>
    </body>
</html>


bahagian seterusnya
<!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>习近平心中的互联网</h1> <p>互联网是20世纪最伟大的发明,它正在将人类“<span class="box">一网打尽</span>”,人们在不知不觉中已经融入了互联网生态,互联网让世界变成了“鸡犬之声相闻”的地球村。</p> </body> </html>
babperisian kursus