resize
用于规定用户是否可以调整元素的宽高(例如:文本域的宽高)
属性值 | 作用 |
---|---|
none | 用户无法调整元素的宽高 |
both | 宽高均可调整 |
horizontal | 宽度可调 |
vertical | 高度可调 |
/* 宽高不可调 */
textarea:first-child {
resize: none;
}
/* 宽高均可调 */
textarea:nth-of-type(2) {
resize: both;
}
resize
用于规定用户是否可以调整元素的宽高(例如:文本域的宽高)
属性值 | 作用 |
---|---|
none | 用户无法调整元素的宽高 |
both | 宽高均可调整 |
horizontal | 宽度可调 |
vertical | 高度可调 |
/* 宽高不可调 */
textarea:first-child {
resize: none;
}
/* 宽高均可调 */
textarea:nth-of-type(2) {
resize: both;
}