باستخدام CSS، يمكن تنسيق الروابط بعدة طرق مختلفة.
تنسيق الروابط باستخدام CSS
يمكن تنسيق الروابط باستخدام أي خاصية CSS مثل اللون (color)، نمط الخط (font-family)، الخلفية (background) وغيرها.
مثال:
a {
color: hotpink;
}
يمكنك أيضا تنسيق الروابط بشكل مختلف وفقًا لحالتها. وهناك أربع حالات للروابط:
a:link
– رابط عادي غير مزورa:visited
– رابط تمت زيارته من قبلa:hover
– رابط عند تحريك مؤشر الماوس فوقهa:active
– رابط أثناء الضغط عليه
مثال:
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
}
يُرجى استخدام الرمز البرمجي بحذر.content_copy
ملاحظات هامة:
- عند تحديد تنسيق حالات متعددة للرابط، يجب مراعاة ترتيب معين:
- يجب أن يوضع
a:hover
بعدa:link
وa:visited
. - يجب أن يوضع
a:active
بعدa:hover
.
- يجب أن يوضع
تستخدم الخاصية text-decoration
بشكل رئيسي لإزالة الخطوط السفلية من الروابط.tunesharemore_vert
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
يمكن استخدام خاصية background-color
لتحديد لون خلفية للروابط:tunesharemore_vert
a:link {
background-color: yellow;
}
a:visited {
background-color: cyan;
}
a:hover {
background-color: lightgreen;
}
a:active {
background-color: hotpink;
}
أزرار الروابط باستخدام CSS
يوضح هذا المثال تطبيقًا أكثر تقدمًا حيث نجمع بين عدة خصائص CSS لعرض الروابط كمربعات/أزرار:
a:link, a:visited {
background-color: #f44336;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}
امثله اكثر
يُوضح هذا المثال كيفية إضافة أنماط أخرى إلى الروابط .
a.one:link {color: #ff0000;}
a.one:visited {color: #0000ff;}
a.one:hover {color: #ffcc00;}
a.two:link {color: #ff0000;}
a.two:visited {color: #0000ff;}
a.two:hover {font-size: 150%;}
a.three:link {color: #ff0000;}
a.three:visited {color: #0000ff;}
a.three:hover {background: #66ff66;}
a.four:link {color: #ff0000;}
a.four:visited {color: #0000ff;}
a.four:hover {font-family: monospace;}
a.five:link {color: #ff0000; text-decoration: none;}
a.five:visited {color: #0000ff; text-decoration: none;}
a.five:hover {text-decoration: underline;}
مثال آخر على كيفية إنشاء مربعات/أزرار للروابط:
a:link, a:visited {
background-color: white;
color: black;
border: 2px solid green;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: green;
color: white;
}
يوضح هذا المثال الأنواع المختلفة للأسهم (يمكن أن تكون مفيدة للروابط):
<span style="cursor: auto">auto</span><br>
<span style="cursor: crosshair">crosshair</span><br>
<span style="cursor: default">default</span><br>
<span style="cursor: e-resize">e-resize</span><br>
<span style="cursor: help">help</span><br>
<span style="cursor: move">move</span><br>
<span style="cursor: n-resize">n-resize</span><br>
<span style="cursor: ne-resize">ne-resize</span><br>
<span style="cursor: nw-resize">nw-resize</span><br>
<span style="cursor: pointer">pointer</span><br>
<span style="cursor: progress">progress</span><br>
<span style="cursor: s-resize">s-resize</span><br>
<span style="cursor: se-resize">se-resize</span><br>
<span style="cursor: sw-resize">sw-resize</span><br>
<span style="cursor: text">text</span><br>
<span style="cursor: w-resize">w-resize</span><br>
<span style="cursor: wait">wait</span>