هذا الدرس من الدورة التدريبية: دورة تدريبية لغة CSS لإنشاء تصاميم وتنسيق صفحات الإنترنت
الدرس: كيفية إخفاء عناصر صفحة الويب بإستخدام Visibility Hidden وأنماط مؤشر الماوس Cursor Styles في CSS
المدة: 5 دقائق
وصف مختصر:
اكتشف كيف تعمل خاصية الرؤية في CSS، والفرق بين "رؤية مخفية" و"رؤية مرئية"، وكيفية تخصيص مؤشر الفأرة لتحسين تجربة المستخدم.
وصف الدرس
Visibility Hidden and Cursor Mouse Styles in CSS
Master the essential concepts of visibility and cursor styling in CSS to enhance your web development skills.
Understanding Visibility in CSS
The
visibility
property in CSS determines whether an element is visible or hidden. However, hidden elements still occupy space in the layout.- visibility: visible; - Makes the element visible.
- visibility: hidden; - Hides the element but retains its space.
Key difference: Unlike
display: none;
, visibility: hidden;
hides the content but preserves its layout space.Customizing the Cursor in CSS
The
cursor
property allows developers to define the appearance of the cursor when it hovers over specific elements.- cursor: default; - The default arrow cursor.
- cursor: pointer; - Indicates a clickable element.
Use the cursor property to improve interactivity and provide visual cues to users.
Example: Create a button that changes the cursor style:
button {
cursor: pointer;
}
Practical Applications
Learn how to:
- Change the cursor style globally for the web browser.
- Customize the cursor style for specific HTML elements.
- Create interactive effects using cursor styles in combination with visibility properties.
الفيديوهات
سجل دخول وتأكد من اشتراكك في هذا البرنامج الدراسي للوصول إلى الأدوات والمواد التدريبية و الفيديوهات
فيديو الدرس التعليمي كيفية إخفاء عناصر صفحة الويب بإستخدام Visibility Hidden وأنماط مؤشر الماوس Cursor Styles في CSS
المصادر
سجل دخول وتأكد من اشتراكك في هذا البرنامج الدراسي للوصول إلى الأدوات والمواد التدريبية و المصادر
أوامر تنسيق عناصر هيكل صفحة الويب
ملحقات ال PDF
سجل دخول وتأكد من اشتراكك في هذا البرنامج الدراسي للوصول إلى الأدوات والمواد التدريبية و ملحقات ال PDF
Css كتاب شرح مساعد لفهم أساسيات :Float .Display,filter,min_width,min_height
الدروس والاختبارات لتعلم هذه الدورة التدريبية : دورة تدريبية لغة CSS لإنشاء تصاميم وتنسيق صفحات الإنترنت