how do you increase the height of an html textbox

后端 未结 8 1066
野性不改
野性不改 2020-12-24 04:53

How do you increase the height of an textbox? (along with its font size)

8条回答
  •  温柔的废话
    2020-12-24 05:31

    • With inline style:

      
      
    • or with apart CSS:

      HTML:

      
      

      CSS:

      #txtbox {
          font-size: 18pt;
          height: 42px;
          width : 300px;
      }
      

提交回复
热议问题