كيف تكتب كود الcss
هناك ثلاث طرق شهيرة لكتابة اكواد الcss
-داخل وسم head في صفحة html واسم الطريقة (Internalstyle)
من خلال اضافة وسم style داخل وسم head
مثال:-
<html>
<head>
<style>
article{
color: red;
}
</style>
article{
color: red;
}
</style>
</head>
-داخل العنصر (inline style)
مثال:-
<h1 style="color: red; text-align:center; > hello</h1>
في ملف خارج الصفحة (External style)
ويتم استدعاءه في صفحة html
مثال:-
<head>
<link rel ="stylesheet" href="style.css" type="text/css" />
</head>
كتب بواسطة :عمر عمرو
تعليقات
إرسال تعليق