Search
 
SCRIPT & CODE EXAMPLE
 

CSS

disable textarea resize

textarea {   /* for all text* area elements */
  resize: none;
}

#foo {                  /* for particular id */
  resize: none;
}
Comment

textarea resize off

<textarea class="myTextArea"></textarea>
<style>
  .myTextArea {
    resize: none;
  }
</style>
Comment

remove resize from textarea

textarea {
	resize: none;
}
Comment

asp.net textarea disable resize

<asp:TextBox ID="TextBox1" runat="server" TextMode = "MultiLine" style = "resize:none"></asp:TextBox>
Comment

make textarea not resizable

You can either apply this as an inline style property like so: 
<textarea style="resize: none;"></textarea>
or in between 
<style>...</style> element tags like so: 
textarea { resize: none; }
Comment

PREVIOUS NEXT
Code Example
Css :: how rotate infinity css 
Css :: centering div horizontally 
Css :: css flip image horizontally 
Css :: radio checked css 
Css :: nunito font family 
Css :: align icon center div 
Css :: keep background image fixed during scroll using css 
Css :: css rounded corners 
Css :: half circle css 
Css :: how to filter css red 
Css :: edge media query 
Css :: css selector no attribute 
Css :: text limit in css 
Css :: css text color border 
Css :: jquery css multiple line 
Css :: how to use html and css to design a chess board 
Css :: how to snap the scroll is css 
Css :: css code to blur background 
Css :: responsive container css 
Css :: media query all devices 
Css :: prevent screen reader from reading text out loud css 
Css :: transition transform 
Css :: html three dots ellipsis 
Css :: css photo circle 
Css :: css resize image to fit div no stretching 
Css :: ngx-charts css 
Css :: css different sreen size 
Css :: how to remove border of a specific side of td in css 
Css :: Hide Google Recaptcha V3 | how to hide the reCaptcha v3 badge 
Css :: word ellipsis css 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =