改变元素大小
Posted AdiaLike
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改变元素大小相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title>改变元素大小</title>
<style type="text/css">
div{
width: 200px;
height: 200px;
background-color: red;
border: solid;
/*如果想调整一个元素像textarea那样随意改变大小 我们可以使用resize
属性有 horizontal 可以改变元素的宽
vertical 可以改变元素的高
但是 resize必须和overflow配合使用*/
resize: horizontal;
overflow: auto;
}
</style>
</head>
<body>
<textarea></textarea>
<div></div>
</body>
</html>
以上是关于改变元素大小的主要内容,如果未能解决你的问题,请参考以下文章