CodeLab
Show Output
 
xxxxxxxxxx
20
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>CSS Set Width Range for an Element</title>
6
<style>
7
    div {
8
        float: left;
9
        min-width: 300px;
10
        max-width: 500px;
11
        height: 100px;
12
        background: #eee8aa;
13
    }
14
</style>
15
</head>
16
<body>  
17
    <p><strong>Note:</strong> The minimum width of the following div element will be 300px, and it can stretches horizontally up to 500px. Enter few lines of text inside the div element to understand how it works.</p>
18
    <div></div> 
19
</body>
20
</html>
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。