Turn off resize textarea


CSS to disable resizing The CSS to disable resizing for all textareas looks like this:
textarea {
    resize: none;
}
You could instead just assign it to a single textarea by name (where the textarea HTML is ):
textarea[name=foo] {
    resize: none;
}
Or by id (where the textarea HTML is ):
#foo {
    resize: none;
}

Bu blogdaki popüler yayınlar

About Android padding, margin, width, height, wrap_content, match_parent, R Class

@SerializedName and @Expose annotations