Category: Responsive

  • Frameworks

    CSS has various frameworks which are specialized in web development. These frameworks such as bootstrap, Tailwind CSS, and various more, have inbuilt classes and packages for commonly used UI components such as navigation bars, menu bars, buttons, image galleries, etc. In this chapter, we will learn and understand some of the most popular and freely…

  • Videos

    In responsive web design, its important to make sure videos are fitting properly to the layout. Videos should expand to fill the entire content area while keeping their original aspect ratio. When a fixed width or height of a video is specified, it may cause layout issue in very large or very small screens, such…

  • Images

    In responsive web design, its important to make sure images fit well on all screen sizes and resolutions. By using properties like max-width and min-width, images can automatically resize to fit different screens. In this chapter, well learn how to make images responsive, look at key properties for responsive images, and see how to create…

  • Media Query

    In Responsive Web Designing, media queries rules are used to conditionally apply styles for specific screen widths, aspect ratios and resolutions. In this chapter, we will learn how to design a responsive web page using media query rule. What is Media Query? Media queries in CSS are used to apply different CSS styles based on…

  • Grid view

    A responsive webpage always uses grid layout structure, as it can be easily adapted to different screen sizes and devices. In this chapter we will discuss grid view in responsive web development and how to design a grid based responsive website. What is Grid View? In responsive web design, a grid view is a layout…

  • Viewport

    A viewport, in the context of responsive web design, is a virtual area used by the browser to render a web page. The viewport is essential to web development and creation of responsive designs that adapt to various devices and screen sizes. What is a Viewport? Viewport is the visible area for a user in the…

  • RWD Introduction

    Responsive Web Design (RWD) is an approach of designing web applications that render accurately on various devices with different screen sizes and resolutions. What is Responsive Web Design? Example of Responsive Webpage Here is a complete example code explaining how to develop a simple responsive webpage using HTML and CSS. In the code given below,…