how to fit textbox in the table cell

后端 未结 5 1813
闹比i
闹比i 2021-02-20 06:49

.. been trying to fit the textbox (auto adjust the textbox width) within HTML table\'s cell but no luck.. can anyone please help? thanks

What I have:

&l         


        
5条回答
  •  北恋
    北恋 (楼主)
    2021-02-20 07:06

    "Textboxes" like

    CSS:

    .myTextarea
    {
       display: block;
       width: 100%;
       height: 100%;
    }
    

    Example for you here.

    And an updated example for you here. (With margins added and a table for you to see it working in)

    Also, do you have some code we can see? textbox isn't valid HTML so we have no idea what you're trying to use :)

提交回复
热议问题