على انتهاك وتحقيق
مفهوم الـ SOLID Principles
تعتبر قناة Nullexia For Programming مكانًا مثاليًا لكل من يهوى البرمجة ويرغب في تعلم المزيد في هذا المجال المثير. يقدم المالك الإبداعي @m3md69 محتوى برمجي متميز على هذه القناة على تليجرام، حيث يشارك المشتركين بأحدث التقنيات والأدوات في عالم البرمجة.
بالإضافة إلى ذلك، تحتوي القناة على روابط مفيدة لموقع اليوتيوب الخاص بـNullexia، حيث يمكنك مشاهدة مقاطع الفيديو التعليمية والشروحات البرمجية بكل يسر وسهولة. كما يمكنك التواصل وطرح الأسئلة من خلال قناة الدردشة الخاصة بالمالك @NullexiaChat.
لا تفوت الفرصة لزيارة الموقع الرسمي لـ Nullexia For Programming على الرابط التالي m3md69.github.io/NULLEXIA للاطلاع على المزيد من المواد التعليمية والمقالات الشيقة.
إذا كنت من عشاق البرمجة أو ترغب في دخول عالم البرمجة بكل ثقة ومهارة، فإن Nullexia For Programming هي الوجهة المثالية لك. انضم الآن واستمتع بتطوير مهاراتك البرمجية بصحبة خبراء المجال.
03 Jan, 02:27
01 Dec, 06:40
# CSS Units
## **Relative Units**
These units are relative to another value or context:
- **`em`**: Relative to the font size of the parent element.
- **`rem`**: Relative to the font size of the root element (`<html>`).
- **`%`**: Relative to the parent element (e.g., width or height).
- **`vw`**: 1% of the width of the viewport.
- **`vh`**: 1% of the height of the viewport.
- **`vmin`**: 1% of the smaller dimension of the viewport (width or height).
- **`vmax`**: 1% of the larger dimension of the viewport (width or height).
- **`ch`**: The width of the "0" character in the current font.
- **`ex`**: The height of the "x" character in the current font.
- **`lh`**: Relative to the line height of the element.
## **Absolute Units**
These units are fixed and not relative:
- **`px`**: Pixels (the most common unit).
- **`cm`**: Centimeters.
- **`mm`**: Millimeters.
- **`in`**: Inches (1 inch = 2.54 cm).
- **`pt`**: Points (1 point = 1/72 of an inch).
- **`pc`**: Picas (1 pica = 12 points).
## **Time Units**
Used to define durations:
- **`s`**: Seconds.
- **`ms`**: Milliseconds (1 ms = 1/1000 of a second).
## **Angle Units**
Used with transformations and rotations:
- **`deg`**: Degrees (0 to 360).
- **`rad`**: Radians.
- **`grad`**: Gradians (400 units in a circle).
- **`turn`**: Full rotations (1 turn = 360 degrees).
## **Frequency Units**
Used for properties related to sound:
- **`Hz`**: Hertz.
- **`kHz`**: Kilohertz.
## **Resolution Units**
Used to define display resolution:
- **`dpi`**: Dots per inch.
- **`dpcm`**: Dots per centimeter.
- **`dppx`**: Dots per pixel (1 dppx = 96 dpi).
25 Oct, 09:28
02 Jul, 20:53
06 May, 06:27
26 Apr, 05:57