Maintaining a padding inside of text-area

后端 未结 3 1042
礼貌的吻别
礼貌的吻别 2021-01-20 18:24

Inside of my textarea, I wish to maintain a padding of 30px from the top.

textarea {
    display: block;
    width: 300px;
    height: 50px;
    padding-top:         


        
3条回答
  •  走了就别回头了
    2021-01-20 19:12

    I think the correct it's usage a "margin", but for you request can be: http://jsfiddle.net/Lhderpup/

    .padTextarea {
      background-color: white;
      padding-top: 30px;
      display: table;
      border: 1px solid #CCC;
    }
    

    Adding a new DIV. More about, Margin, Padding, etc: Difference between margin and padding?

    I hope I have helped.

提交回复
热议问题