实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
border:2px solid;
8
padding:10px 40px; 
9
width:300px;
10
resize:both;
11
overflow:auto;
12
}
13
</style>
14
</head>
15
<body>
16
17
<p><b>Note:</b> Firefox, Safari, and Chrome support the resize property.</p>
18
19
<div>The resize property specifies whether or not an element is resizable by the user.</div>
20
21
</body>
22
</html>
23