CSS User Interface providing few properties to html elements, we can resize the elements those who don't have the feature before like DIV. as we know we can resize the text-area box in browsers but we can't resize the other elements using resize property and we can resize other elements also in browsers. and we disable the resize feature to textatea box.
Resizing The Elements
we can use resize property to resize the elements should not re-sizable the elements and we can remove the outlines from forms using outline property
we can use resize property to resize the elements should not re-sizable the elements and we can remove the outlines from forms using outline property
<style> // the text div resizable in web browser div{ resize:both; } // remove resize and outline form froms textarea{ resize:none; outline:none; } </style>
No comments :
Post a comment