-
Is there a way to prevent the user from manually adjusting the textarea element?
-
-YES, there is a way to adjust the textarea element.
-
If yes, how?
-
Restriction
-The most easiest way to do this is by setting resize to none in the CSS. Resize is a property that
specifies whether or not an element is resizable by the user.
-
What are the definitions of the different types of target in HTML
-
_blank: It opens the linked document in a new window or tab.
- _self: It opens the linked document in the same frame as it was clicked. This is the default.
- _parent: It opens the linked document in the parent frame.
- _top: It opens the linked documentin the full body of the window.
- _framename: It opens the linked document in the named iframe.