<p>Sử dụng min () để đặt chiều rộng của # div1 thành giá trị nào nhỏ nhất, 50% hoặc 300px:</p>
<div id="div1">Some text...</div>
<p>Thay đổi kích thước cửa sổ trình duyệt để xem hiệu ứng.</p>
#div1 {
background-color: yellow;
height: 100px;
width: min(50%, 300px);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.