1

我正在设计一个移动应用程序,我正在尝试更改 html 文本元素的大小。但是“大小”属性没有显示出任何影响。我该怎么做?

提前致谢。

4

3 回答 3

1

要动态更改大小,请使用css()jQuery 中的方法:

$("#element").css({
    width: 100,
    height: 100
});

或者没有jQuery的另一种方式:

with (document.getElementById("element").style) {
    width = "100px";
    height = "100px";
}

要设置静态大小,请使用 CSSwidthheight属性。

于 2012-05-15T12:49:57.493 回答
0

size属性是上古遗物。

使用 CSS 定义input元素的尺寸。

于 2012-05-15T12:49:16.850 回答
0

HTML

<input type="text" class="input-text" />

CSS

.input-text
{
width:300px;
height:30px;
font:Verdana, Geneva, sans-serif;
font-size:30px;
}
于 2012-05-15T12:51:40.110 回答