How to disable resizable property of textarea? I want to disable the resizable property of a textarea. Currently, I can resize a textarea by clicking on the bottom right corner of the textarea and dragging the mouse. How can I disable this? Answer: The following CSS rule disables resizing behavior for textarea elements: textarea { resize: none; } To disable it for some (but not all) textareas, there are a couple of options. To disable a specific textarea with the name attribute set to foo (i.e., <textarea name="foo"></textarea>): textarea[name=foo] { resize: none; } Or, using an id attribute (i.e., <textarea id="foo"></textarea>): #foo

CSS background-image Property Css allow set backgroung image / images.Use background-images property for set background image in a web page. Images Allow types is PNG, JPG,GIF,JPEG,SVG,WEBP CSS background-image Property syntax background-image: url("image path"); single background image set Example code <style> body { background-image: url("backgroundimage.gif"); } </style> Multiple background images set Example code <style> body { background-image: url("backgroundimage1.png"), url("backgroundimage2.jpg"); } </style>