css3第五集 用户界面

用户界面

属性 说明
resize 调整大小

代码演示

demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<head>
<meta charset="utf-8" />
<style>
/*
用户界面
|属性|说明|
|resize|调整大小|
*/
textarea {
/*
resize: none;
resize: both;
resize: vertical;
*/
resize: horizontal;
}
</style>
</head>
<body>
<textarea cols="50" rows="5"></textarea>
</body>