css:rwd:responsive-web-design
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
css:rwd:responsive-web-design [2023/08/08 21:45] – removed - external edit (Unknown date) 127.0.0.1 | css:rwd:responsive-web-design [2023/08/08 21:56] (current) – odefta | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== CSS RWD (Responsive Web Design) ====== | ||
+ | |||
+ | CSS RWD stands for " | ||
+ | ;;;This is achieved by using flexible layouts, resizable images, and media queries.;;; | ||
+ | |||
+ | ===== Cascading Style Sheets (CSS) ===== | ||
+ | |||
+ | CSS is a stylesheet language used to control the look and formatting of a document written in HTML or XML. It allows you to apply styles (such as fonts, colors, spacing) to web documents. | ||
+ | |||
+ | ===== Responsive Web Design (RWD) ===== | ||
+ | |||
+ | This approach aims to craft sites that provide an optimal viewing experience, easy reading, and navigation across a wide range of devices, from desktop computer monitors to mobile phones. \\ | ||
+ | RWD is achieved by: | ||
+ | * **Flexible Grid Layouts**: Layouts are designed to adapt to the screen size by using percentages rather than fixed units like pixels. | ||
+ | * **Resizable Images**: Images are also resized relative to the container or viewport so they don't break the layout on smaller screens. | ||
+ | * **Media Queries**: These allow the page to use different CSS style rules based on the characteristics of the device being used to view the page (e.g., its width, height, resolution). | ||
+ | Together, CSS and RWD principles enable web developers to create web pages that look good and function well on any device, improving user experience and accessibility. | ||
+ | |||
+ | ===== Hello World Example ===== | ||
+ | |||
+ | <code html css-rwd-hello-world.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | <meta name=" | ||
+ | <link rel=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | <div class=" | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <code css styles.css> | ||
+ | body { | ||
+ | font-family: | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | background-color: | ||
+ | } | ||
+ | |||
+ | .container { | ||
+ | max-width: 800px; | ||
+ | margin: 0 auto; | ||
+ | padding: 20px; | ||
+ | text-align: center; | ||
+ | } | ||
+ | |||
+ | @media only screen and (max-width: 600px) { | ||
+ | h1 { | ||
+ | font-size: 18px; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Viewport settings ===== | ||
+ | |||
+ | The ;;;<meta name=" | ||
+ | |||
+ | ==== Tag description ==== | ||
+ | |||
+ | * **name=" | ||
+ | * **width=device-width**: | ||
+ | * **initial-scale=1.0**: | ||
+ | |||
+ | The inclusion of this meta tag helps to optimize the display for different devices and ensures that the responsive design techniques applied via CSS work as intended. Without this tag, some mobile browsers might default to a viewport width that is wider than the device, causing the page to render as a scaled-down version of the full desktop site. By including this tag, the developer instructs the browser to render the content in a way that is more suitable for the screen' | ||
+ | |||
+ | ===== Media query description ===== | ||
+ | |||
+ | The **@media** rule is used in CSS to apply styles only when certain conditions are met. It's a cornerstone of responsive web design, allowing developers to create different layouts for different devices or screen sizes.\\ | ||
+ | |||
+ | Here's what the specific rule ;;;@media only screen and (max-width: 600px);;; means: | ||
+ | |||
+ | * **@media**: This is the introduction to a media query, telling the browser that the following conditions will define when certain styles are applied. | ||
+ | * **only screen**: This part restricts the styles inside the media query to screen devices only. It ensures that the styles are not applied to other media types like print. The word only is used to prevent older browsers that don't support media queries with media features from applying the given styles. | ||
+ | * **(max-width: | ||
+ | This means that ;;;if you are viewing the website on a device or window that is 600 pixels in width or narrower, the CSS rules inside this media query will take effect.;;; | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||