我在内容可编辑的div上设置了一些样式,div可以调整大小,但样式在大小更改时不会根据大小进行更改。 HTML:
<div contenteditable="true" id="input"></div>
CSS:
#input {
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: white;
background-color: -moz-field;
border: 1px solid darkgray;
box-shadow: 1px 1px 1px 0 lightgray inset;
font: -moz-field;
font: -webkit-small-control;
margin-top: 5px;
padding: 2px 3px;
width: 398px;
height:40px;
resize:both;
}
答案 0 :(得分:0)
以百分比形式给出宽度,这将有助于调整大小。不知道那就是你的意思。
#input {
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: white;
background-color: -moz-field;
border: 1px solid darkgray;
box-shadow: 1px 1px 1px 0 lightgray inset;
font: -moz-field;
font: -webkit-small-control;
margin-top: 5px;
padding: 2px 3px;
width: 80%;
height:40px;
resize:both;
}