- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
CSS - 14 CSS Positions [Arabic] | CSS المواضع في الـ
CSS - 14 CSS Positions [Arabic] | CSS المواضع في الـ
Arabic:
1. المواضع في CSS:
- يمكن تحديد مواضع العناصر في CSS باستخدام خصائص المواضع.
- بعض خصائص المواضع تشمل:
- `position: static;`: الموضع الافتراضي وهو لا يتغير عن الموضع الأصلي.
- `position: relative;`: يتحرك العنصر بالنسبة لموضعه الأصلي، ويمكن استخدام `top` و `left` وغيرها لتحديد الموضع.
- `position: absolute;`: يتحرك العنصر بالنسبة لأول عنصر قائم (أو موضع الأب القريب) غير `static`.
- `position: fixed;`: يثبت العنصر بالنسبة لنافذة المتصفح ولا يتحرك مع التمرير.
- `position: sticky;`: يتحرك العنصر بالنسبة لموضعه الأصلي، ولكن عندما يصل إلى حافة الشاشة يثبت في المكان.
2. استخدامات خصائص المواضع:
- `position: static;` يستخدم للمواضع الافتراضية والتي لا تحتاج إلى تعديل.
- `position: relative;` يمكن استخدامه لتعديل المواضع بالنسبة للموضع الأصلي للعنصر.
- `position: absolute;` يمكن استخدامه لتحديد موضع العنصر بالنسبة لأول عنصر قائم.
- `position: fixed;` يستخدم لتثبيت العنصر في مكانه عند التمرير في الصفحة.
- `position: sticky;` يمكن استخدامه لتثبيت العنصر في الموضع عندما يمر بالمكان المحدد.
English:
1. CSS Positions:
- Element positions in CSS can be defined using position properties.
- Some position properties include:
- `position: static;`: The default position, it does not change from the original position.
- `position: relative;`: The element moves relative to its original position, and `top`, `left`, etc. can be used to define the position.
- `position: absolute;`: The element moves relative to the first positioned (not `static`) parent element.
- `position: fixed;`: The element is fixed to the browser window and does not move with scrolling.
- `position: sticky;`: The element moves relative to its original position until it reaches a specified point, then it sticks in place.
2. Uses of Position Properties:
- `position: static;` is used for default positions that do not need adjustment.
- `position: relative;` can be used to adjust positions relative to the original position of the element.
- `position: absolute;` can be used to position an element relative to its closest positioned ancestor.
- `position: fixed;` is used to fix an element in place when scrolling on the page.
- `position: sticky;` can be used to make an element stick in a specific position when scrolling.
-------------------------------------------------------------------------------------------------
ترحيباً بكم في مقدمة دورتنا لتطوير الويب باللغة العربية! في هذا الفيديو، نتحدث عن أهم التقنيات من استطلاع StackOverFlow 2024، مما يمهّد الطريق لرحلتكم في عالم البرمجة. سنغطي محتوى الدورة، مع التركيز على HTML، CSS، وJavaScript. انضموا إلينا لتتعلموا كيفية بناء مواقع ويب رائعة وتطبيقات ويب ديناميكية.
Welcome to the introduction of our Web Development course in Arabic! In this video, we discuss the most popular technologies from the StackOverFlow 2024 survey, setting the foundation for your programming journey. We'll cover the course content, focusing on HTML, CSS, and JavaScript. Join us to learn how to build stunning websites and dynamic web applications.
Course Content (English):
Introduction to Web Development
Overview of web development
Basics of HTML, CSS, and JavaScript
Setting up development environment
HTML Fundamentals
Structure of HTML documents
Tags and attributes
Creating forms and tables
CSS Styling
CSS syntax and selectors
Working with colors, backgrounds, and borders
Flexbox and Grid layout
JavaScript Basics
Variables, data types, and operators
Functions and control structures
DOM manipulation and events
Responsive Web Design
Media queries
Designing for different screen sizes
Mobile-first approach
Project: Personal Portfolio
Apply HTML, CSS, and JavaScript
Build a responsive portfolio website
Showcase your projects and skills
Advanced CSS
CSS preprocessors (Sass)
Animations and transitions
CSS frameworks (Bootstrap)
مقدمة في تطوير الويب
نظرة عامة على تطوير الويب
أساسيات HTML، CSS، وJavaScript
إعداد بيئة التطوير
أساسيات HTML
هيكل مستندات HTML
العلامات والسمات
إنشاء نماذج وجداول
تنسيق CSS
بناء جملة CSS واختيار العناصر
العمل مع الألوان والخلفيات والحدود
نموذج Flexbox والتخطيط الشبكي
JavaScript الأساسيات
المتغيرات وأنواع البيانات والعمليات
الدوال والهياكل التحكمية
التلاعب بـ DOM والأحداث
تصميم الويب المتجاوب
استعلامات الوسائط
التصميم لأحجام شاشات مختلفة
نهج التصميم للأجهزة المحمولة أولاً
مشروع: السيرة الذاتية الشخصية
تطبيق HTML، CSS، وJavaScript
بناء موقع ويب للسيرة الذاتية يستجيب للشاشات
عرض مشاريعك ومهاراتك
CSS المتقدمة
معالجات CSS (Sass)
الرسوم المتحركة والانتقالات
أطر CSS (Bootstrap)
Видео CSS - 14 CSS Positions [Arabic] | CSS المواضع في الـ канала Ghaiath Al trabulsi غياث الطرابلسي
Arabic:
1. المواضع في CSS:
- يمكن تحديد مواضع العناصر في CSS باستخدام خصائص المواضع.
- بعض خصائص المواضع تشمل:
- `position: static;`: الموضع الافتراضي وهو لا يتغير عن الموضع الأصلي.
- `position: relative;`: يتحرك العنصر بالنسبة لموضعه الأصلي، ويمكن استخدام `top` و `left` وغيرها لتحديد الموضع.
- `position: absolute;`: يتحرك العنصر بالنسبة لأول عنصر قائم (أو موضع الأب القريب) غير `static`.
- `position: fixed;`: يثبت العنصر بالنسبة لنافذة المتصفح ولا يتحرك مع التمرير.
- `position: sticky;`: يتحرك العنصر بالنسبة لموضعه الأصلي، ولكن عندما يصل إلى حافة الشاشة يثبت في المكان.
2. استخدامات خصائص المواضع:
- `position: static;` يستخدم للمواضع الافتراضية والتي لا تحتاج إلى تعديل.
- `position: relative;` يمكن استخدامه لتعديل المواضع بالنسبة للموضع الأصلي للعنصر.
- `position: absolute;` يمكن استخدامه لتحديد موضع العنصر بالنسبة لأول عنصر قائم.
- `position: fixed;` يستخدم لتثبيت العنصر في مكانه عند التمرير في الصفحة.
- `position: sticky;` يمكن استخدامه لتثبيت العنصر في الموضع عندما يمر بالمكان المحدد.
English:
1. CSS Positions:
- Element positions in CSS can be defined using position properties.
- Some position properties include:
- `position: static;`: The default position, it does not change from the original position.
- `position: relative;`: The element moves relative to its original position, and `top`, `left`, etc. can be used to define the position.
- `position: absolute;`: The element moves relative to the first positioned (not `static`) parent element.
- `position: fixed;`: The element is fixed to the browser window and does not move with scrolling.
- `position: sticky;`: The element moves relative to its original position until it reaches a specified point, then it sticks in place.
2. Uses of Position Properties:
- `position: static;` is used for default positions that do not need adjustment.
- `position: relative;` can be used to adjust positions relative to the original position of the element.
- `position: absolute;` can be used to position an element relative to its closest positioned ancestor.
- `position: fixed;` is used to fix an element in place when scrolling on the page.
- `position: sticky;` can be used to make an element stick in a specific position when scrolling.
-------------------------------------------------------------------------------------------------
ترحيباً بكم في مقدمة دورتنا لتطوير الويب باللغة العربية! في هذا الفيديو، نتحدث عن أهم التقنيات من استطلاع StackOverFlow 2024، مما يمهّد الطريق لرحلتكم في عالم البرمجة. سنغطي محتوى الدورة، مع التركيز على HTML، CSS، وJavaScript. انضموا إلينا لتتعلموا كيفية بناء مواقع ويب رائعة وتطبيقات ويب ديناميكية.
Welcome to the introduction of our Web Development course in Arabic! In this video, we discuss the most popular technologies from the StackOverFlow 2024 survey, setting the foundation for your programming journey. We'll cover the course content, focusing on HTML, CSS, and JavaScript. Join us to learn how to build stunning websites and dynamic web applications.
Course Content (English):
Introduction to Web Development
Overview of web development
Basics of HTML, CSS, and JavaScript
Setting up development environment
HTML Fundamentals
Structure of HTML documents
Tags and attributes
Creating forms and tables
CSS Styling
CSS syntax and selectors
Working with colors, backgrounds, and borders
Flexbox and Grid layout
JavaScript Basics
Variables, data types, and operators
Functions and control structures
DOM manipulation and events
Responsive Web Design
Media queries
Designing for different screen sizes
Mobile-first approach
Project: Personal Portfolio
Apply HTML, CSS, and JavaScript
Build a responsive portfolio website
Showcase your projects and skills
Advanced CSS
CSS preprocessors (Sass)
Animations and transitions
CSS frameworks (Bootstrap)
مقدمة في تطوير الويب
نظرة عامة على تطوير الويب
أساسيات HTML، CSS، وJavaScript
إعداد بيئة التطوير
أساسيات HTML
هيكل مستندات HTML
العلامات والسمات
إنشاء نماذج وجداول
تنسيق CSS
بناء جملة CSS واختيار العناصر
العمل مع الألوان والخلفيات والحدود
نموذج Flexbox والتخطيط الشبكي
JavaScript الأساسيات
المتغيرات وأنواع البيانات والعمليات
الدوال والهياكل التحكمية
التلاعب بـ DOM والأحداث
تصميم الويب المتجاوب
استعلامات الوسائط
التصميم لأحجام شاشات مختلفة
نهج التصميم للأجهزة المحمولة أولاً
مشروع: السيرة الذاتية الشخصية
تطبيق HTML، CSS، وJavaScript
بناء موقع ويب للسيرة الذاتية يستجيب للشاشات
عرض مشاريعك ومهاراتك
CSS المتقدمة
معالجات CSS (Sass)
الرسوم المتحركة والانتقالات
أطر CSS (Bootstrap)
Видео CSS - 14 CSS Positions [Arabic] | CSS المواضع في الـ канала Ghaiath Al trabulsi غياث الطرابلسي
HTML CSS JavaScript Arabic Web Development StackOverflow 2023 Web Design Programming Learn Web Development Coding Tutorial Arabic Programming Web Development for Beginners Web Development Tools HTML_Headings تطوير الويب باللغة العربية CSS (سي إس إس) تطوير الويب بالعربية دورة تطوير الويب البرمجة باللغة العربية تطوير الويب للمبتدئين بناء مواقع الويب CSS Combinators CSS Color CSS الألوان في الـ Box Model in CSS CSS units Flexbox CSS Positions
Комментарии отсутствуют
Информация о видео
17 марта 2024 г. 17:16:42
00:13:31
Другие видео канала

![31 Vue: API Call in Vue [Arabic] | API Call in Vue الـ](https://i.ytimg.com/vi/Nit1d05l-R4/default.jpg)
![17- Responsive design in Tailwind CSS [Arabic] | Tailwind CSS الرسم المتجاوب في](https://i.ytimg.com/vi/RgAZjgOUh3k/default.jpg)
![CSS - 5 - CSS Combinators [Arabic] | CSS المركبات في الـ](https://i.ytimg.com/vi/lit1Emnkx08/default.jpg)
![9 React: conditional rendering [Arabic] | conditional rendering](https://i.ytimg.com/vi/v6sdyoYSop8/default.jpg)
![Bootstrap - 7 Gutters in Bootstrap [Arabic] | Bootstrap تباعد الأعمدة في](https://i.ytimg.com/vi/4PJeiqx3rY4/default.jpg)
![7 React: Passing array & object as props [Arabic] | Passing array & object as props](https://i.ytimg.com/vi/DBXQd1i4omk/default.jpg)
![CSS - 16 CSS Transitions [Arabic] | CSS الانتقالات في الـ](https://i.ytimg.com/vi/5PtMtUOr2OI/default.jpg)
![CSS - 7 - Background-image in CSS [Arabic] | CSS الصور كخلفية في الـ](https://i.ytimg.com/vi/SjfOpifZjeU/default.jpg)
![HTML - 4 - HTML headings and formatting tags [Arabic] | عناوين وعلامات التنسيق](https://i.ytimg.com/vi/SMyNBjzmhZE/default.jpg)
![13 Vue: Event handling - [Arabic] | التعامل مع الأحداث](https://i.ytimg.com/vi/_GNY9Z45-r8/default.jpg)
![17-1- MACHINE LEARNING - Neural network [Arabic] | الشبكة العصبونية](https://i.ytimg.com/vi/JgSjBnZEbfo/default.jpg)
![Bootstrap - 5 - 2 Grid System in Bootstrap [Arabic] | Bootstrap نظام الشبكة في](https://i.ytimg.com/vi/PhBzoza-T_Y/default.jpg)
![CSS - 19 CSS Animations [Arabic] | CSS الرسوم المتحركة في الـ](https://i.ytimg.com/vi/_d56XJQGTWc/default.jpg)
![4- Typography in Tailwind CSS (1) [Arabic] | Tailwind CSS الكتابة في الـ](https://i.ytimg.com/vi/zT3F1G6HvZw/default.jpg)
![HTML - 8 - Image in HTML [Arabic] | الصور](https://i.ytimg.com/vi/PIiGaMMiyyE/default.jpg)
![11 React: UseState Hook [Arabic] | UseState Hook](https://i.ytimg.com/vi/kacyK5ESxKQ/default.jpg)
![3 React: React Component [Arabic] | React Component الـ](https://i.ytimg.com/vi/lMAlrOLVw9w/default.jpg)
![CSS - 6 - Colors in CSS [Arabic] | CSS الألوان في الـ](https://i.ytimg.com/vi/RAdniEZmB4c/default.jpg)
![2 React: Create React Project [Arabic] | Create React Project الـ](https://i.ytimg.com/vi/0EuIpb0v5Lo/default.jpg)
![27 Vue: Scoped Styling in Vue- [Arabic] | Scoped Styling in Vue الـ](https://i.ytimg.com/vi/fvb2ZPyV2RM/default.jpg)