问答详情
源自:6-2 先来填用户名和密码 - 文本输入框、密码输入框

文本输入框的高度设置问题

文本输入框或者输入域可以设置让其高度随着字数的增多而增高吗?

提问者:qq_晓风残月 2016-07-30 10:57

个回答

  • 征服mooc
    2016-07-30 11:13:22

    <textarea style="width:300px;overflow-y:visible"></texarea>
    <!--传说这样是可以的-->


  • 慕桂英8829974
    2016-07-30 11:11:39

    可以的,但是光css可能不行

  • qq_Jay迷_0
    2016-07-30 11:10:13

    完全可以呀  你试试<span style="float:left;">标题:</span><textarea type="text" style="width:260;overflow-x:visible;overflow-y:visible;"></textarea>  

  • 慕粉3746023
    2016-07-30 11:08:03

    可以,得用JavaScript来写

  • 慕粉3745434
    2016-07-30 11:07:36

    CSS代码:


    .test_box {

        width: 400px; 

        min-height: 120px; 

        max-height: 300px;

        _height: 120px; 

        margin-left: auto; 

        margin-right: auto; 

        padding: 3px; 

        outline: 0; 

        border: 1px solid #a0b3d6; 

        font-size: 12px; 

        word-wrap: break-word;

        overflow-x: hidden;

        overflow-y: auto;

        _overflow-y: visible;

    }

    HTML代码:


    <div class="test_box" contenteditable="true"><br /></div>