

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS3 Resize Property
<p>The CSS3 resize property is having three common values as shown below −</p><ul class="list"><li>horizontal</li><li>vertical</li><li>both</li></ul><h2>Example</h2><p>Using both the values in resize property in the CSS3 user interface:</p><p><a class="demo" href="http://tpcg.io/ODjJoG" rel="nofollow noopener noreferrer" target="_blank">Live Demo</a></p><pre class="prettyprint notranslate"><html> <head> <style> div { border: 2px solid; padding: 20px; width: 300px; resize: both; overflow: auto; } </style> </head> <body> <div>My Website</div> </body> </html></pre>
- Related Questions & Answers
- CSS3 Opacity property
- HTML DOM Style resize Property
- CSS3 User Interface Property
- CSS3 Outline offset Property
- CSS3 rgba color property
- CSS3 HSLA color property
- CSS3 HSL color property
- CSS3 Multi-Column Property
- CSS3 Transition Shorthand Property
- CSS2 sizing property vs CSS3 box sizing property
- CSS3 Multi-Column rule-width Property
- CSS3 Multi-Column rule-style Property
- CSS3 Multi-Column column-count Property
- CSS3 Multi-Column column-rule Property
- CSS3 Multi-Column column-fill Property
Advertisements