Rumah > Artikel > hujung hadapan web > Reka Bentuk Web Responsif dengan Grid CSS dan Flexbox
Reka bentuk web responsif ialah cara untuk membangunkan tapak web supaya ia berfungsi dengan baik pada pelbagai jenis peranti dan saiz skrin. Daripada perlu membuat berbilang versi tapak untuk peranti yang berbeza, reka bentuk responsif menggunakan grid dan reka letak yang fleksibel, pertanyaan media dan imej lancar untuk menjadikan pengalaman pengguna lebih baik, merentas semua platform.
Memandangkan semakin ramai orang di seluruh dunia menggunakan telefon bimbit dan tablet untuk menyemak imbas internet, mempunyai tapak web responsif bukanlah satu pilihan lagi—ia adalah satu keperluan. Reka bentuk responsif membolehkan kebolehgunaan yang lebih baik dengan membenarkan pengguna mengakses kandungan dengan lancar, tanpa mengira peranti yang mereka gunakan. Ia juga meningkatkan pengalaman pengguna dengan memastikan kandungan adalah koheren secara visual dan mudah dibaca merentas peranti Ini boleh mengurangkan kekecewaan dan menggalakkan interaksi. Apatah lagi, reka bentuk responsif tapak web kalis masa hadapan, membenarkan mereka menyesuaikan diri dengan peranti baharu tanpa perlu melakukan reka bentuk semula yang meluas.
Hari ini, kita akan melihat asas reka bentuk web responsif dan memberi tumpuan terutamanya pada dua teknik CSS yang berkuasa: Flexbox dan CSS Grid. Kami akan menunjukkan cara reka letak ini menyesuaikan diri dengan saiz skrin yang berbeza menggunakan tapak web ringkas dengan kotak dan nombor berwarna-warni.
Reka bentuk web responsif telah banyak berubah sejak zaman awal internet. Pertanyaan media, yang menggunakan gaya berdasarkan ciri peranti, seperti saiz skrin, peleraian dan orientasi. telah diperkenalkan pada awal 2000-an, Flexbox telah dilancarkan pada 2012 dan CSS Grid telah diterima pakai pada 2017. Inovasi ini telah membolehkan pereka bentuk untuk mencipta reka letak yang boleh disesuaikan pada beberapa peranti yang berbeza, memberikan pengalaman yang lebih baik untuk pengguna.
Sekarang, mari lihat beberapa contoh praktikal yang membolehkan kita melihat cara Flexbox dan Grid CSS berfungsi.
Kami akan membuat reka letak mudah menggunakan Grid CSS.
HTML untuk Tata Letak Grid:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Color Grid</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="grid-container"> <div class="grid-item" style="background-color: #FF5733;">1</div> <div class="grid-item" style="background-color: #33FF57;">2</div> <div class="grid-item" style="background-color: #3357FF;">3</div> <div class="grid-item" style="background-color: #FF33A1;">4</div> <div class="grid-item" style="background-color: #33FFF1;">5</div> <div class="grid-item" style="background-color: #FFA133;">6</div> </div> </body> </html>
HTML:
CSS untuk Reka Letak Grid:
/* styles.css */ body { margin: 0; font-family: Arial, sans-serif; background: #f0f0f0; } .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; padding: 20px; } .grid-item { display: flex; justify-content: center; align-items: center; height: 100px; color: #fff; font-size: 2em; border-radius: 8px; }
CSS:
Reka letak grid ini menggunakan:
Seterusnya, mari gunakan Flexbox untuk mencipta barisan kotak berwarna yang ringkas.
HTML untuk Reka Letak Flexbox:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Color Row</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="flex-container"> <div class="flex-item" style="background-color: #FF5733;">1</div> <div class="flex-item" style="background-color: #33FF57;">2</div> <div class="flex-item" style="background-color: #3357FF;">3</div> <div class="flex-item" style="background-color: #FF33A1;">4</div> </div> </body> </html>
HTML:
CSS untuk Reka Letak Flexbox:
/* styles.css */ body { margin: 0; font-family: Arial, sans-serif; background: #f5f5f5; } .flex-container { display: flex; flex-wrap: wrap; justify-content: center; padding: 20px; gap: 10px; } .flex-item { display: flex; justify-content: center; align-items: center; height: 100px; width: 100px; color: #fff; font-size: 2em; border-radius: 8px; }
CSS:
The CSS here uses Flexbox properties to create a responsive layout that adapts to various screen sizes. The display: flex; in the .flex-container gives its child elements, or (flex items), Flexbox functionalities. The flex-wrap: wrap; property allows items to flow onto multiple lines if the container's width is exceeded. The justify-content: center; property centers the flex items along the main axis, so there is a balanced layout regardless of the number of items. The gap: 10px; property introduces uniform spacing between items, improving overall organization. Each .flex-item is also a flex container, using display: flex; to allow further alignment of its inner content, which is centered both vertically and horizontally using justify-content: center; and align-items: center;. The fixed dimensions of height: 100px; and width: 100px; provide uniformity, while the combination of these properties gives the layout a pleasant look while adapting to the needs of different devices.
This flexbox layout demonstrates severalresponsive design characteristics.
When it comes to layout design in CSS, Grid and Flexbox are both great choices, but they serve different purposes. CSS Grid is a two-dimensional layout system that allows you to create complex grid structures with rows and columns, making it ideal for layouts where precise control over both dimensions is required, such as in web applications or dashboards. On the other hand, Flexbox is a one-dimensional layout model that is best at distributing space along a single axis—either horizontally or vertically—making it perfect for simpler layouts or smaller components like buttons or navigation menus. While you might choose Grid for a comprehensive, structured layout where elements need to align across both axes, Flexbox would be your go-to for an adaptive, fluid layout that needs to respond to content size. In the end, your choice should depend on the specific needs of your project; often, using both together, complementarily, can give you the best results.
With CSS Grid and Flexbox, you can create adaptable layouts that look great on any device. These examples illustrate how straightforward it can be to implement dynamic designs.
Now it's your turn! Experiment with these techniques, modify the colors and layout settings, and see how simple it is to create fun and responsive designs.
``
sources:
https://www.w3schools.com/css/css3_flexbox.asp
https://www.w3schools.com/css/css_grid.asp
https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout
https://kinsta.com/blog/responsive-web-design/#4-flexbox-layout
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
https://css-tricks.com/snippets/css/complete-guide-grid/
https://blog.logrocket.com/css-flexbox-vs-css-grid/#:~:text=For%20a%20major%20layout%20style,helpful%20when%20working%20with%20rows.
Atas ialah kandungan terperinci Reka Bentuk Web Responsif dengan Grid CSS dan Flexbox. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!