Apply a Style Using a ID

တကယ္လုိ႕ tag နဲ႕ id ကို တြဲေရးမယ္ ဆုိလည္း ရပါတယ္။ ေအာက္က ဥပမာ ကို ၾကည့္ၾကည့္ပါ။

<!DOCTYPE html>
<html>
<head>
    <title>CSS</title>
    <style>
    p {
        color: blue;
    }

    .sample {
        color:green;
    }
    p.sample {
        color:red;
    }

    p#sample {
        color:gray;
    }
    </style>
</head>
<body>
<p>Only tag</p>
<div class="sample">Div sample class</div>
<p class="sample">Sample class with p tag</p>
<p id="sample">Sample ID with p tag</p>
</body>
</html>

အဲဒီ code ကို ေအာက္ကလို ျမင္ရပါလိမ့္မယ္။

Figure 3-7

Figure 3-7

p#sample ဆိုျပီး p Tag ျဖစ္ျပီး sample ID ျဖစ္တာကို စာလံုး ခဲေရာင္ေျပာင္းထားတာကို ေတြ႕ႏိုင္ပါတယ္။

results matching ""

    No results matching ""