Em thấy vài website như Lazada, Shopee, tainghe.com.vn, … khi resize screen thì cả chữ và cấu trúc các thành phần nó vẫn được giữ nguyên.
Em đã thử set cố dịnh width thì khi resize nó bị tràn UI ra khỏi screen.
Còn responsive bằng flexbox thì chữ bị nhảy dòng khi resize.
Các cao nhân cho em hỏi làm thế nào để có thể giữ cố định cả cấu trúc lẫn chũ khi resize screen như vậy ạ.
<!DOCTYPE html>
<html lang="vi-vn">
<head>
<style>
body {
width: 1188px;
margin: 0 auto;
}
.wrapper {
display: flex;
}
.wrapper > .item {
flex: 1;
font-size: 16px;
padding: 12px;
}
.item > .background-img {
display: block;
max-width: 100%;
height: auto;
margin: 16px 0;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="item">
<img src="https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg?w=2000" class="background-img" />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
<div class="item">
<img src="https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg?w=2000" class="background-img" />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
<div class="item">
<img src="https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg?w=2000" class="background-img" />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</div>
</body>
</html>