开发者

How can the size of an input text box be defined in HTML?

开发者 https://www.devze.com 2023-04-07 15:42 出处:网络
Here is an HTML input text box: 开发者_高级运维<input type=\"text\" id=\"text\" name=\"text_name\" />

Here is an HTML input text box:

开发者_高级运维
<input type="text" id="text" name="text_name" />

What are the options to define the size of the box?

How can this be implemented in CSS?


You could set its width:

<input type="text" id="text" name="text_name" style="width: 300px;" />

or even better define a class:

<input type="text" id="text" name="text_name" class="mytext" />

and in a separate CSS file apply the necessary styling:

.mytext {
    width: 300px;
}

If you want to limit the number of characters that the user can type into this textbox you could use the maxlength attribute:

<input type="text" id="text" name="text_name" class="mytext" maxlength="25" />


The size attribute works, as well

<input size="25" type="text">


Try this

<input type="text" style="font-size:18pt;height:420px;width:200px;">

Or else

 <input type="text" id="txtbox">

with the css:

 #txtbox
    {
     font-size:18pt;
     height:420px;
     width:200px;
    }


You can set the width in pixels via inline styling:

<input type="text" name="text" style="width: 195px;">

You can also set the width with a visible character length:

<input type="text" name="text" size="35">


<input size="45" type="text" name="name">

The "size" specifies the visible width in characters of the element input.

You can also use the height and width from css.

<input type="text" name="name" style="height:100px; width:300px;">
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号