admin
admin

Design Website responsive rtl Navbar تعلم تصميم موقع متجاوب باللغة العربية النافبار 02

28 Jan 2020
438
25

 شرح كيف نستخدم النافبار بالموقع وجعله يتوافق معنا بالشكل المطلوب الروابط بالدورة البوتستراب RTL https://cdnjs.cloudfl…

 شرح كيف نستخدم النافبار بالموقع وجعله يتوافق معنا بالشكل المطلوب

الروابط بالدورة
البوتستراب RTL
https://cdnj..الخط
www.ar-fonts..الجروب
www.facebook..

media query للتوافق علي جميع المقاسات

/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait phones and smaller */
@media (max-width: 480px) {

}

admin