Posts

Showing posts with the label css3 resizing

CSS3 Resizing

CSS3 Resizing By resizing property we can resize the element   vertically, horizontally and both of them in one. Example:- Open the   link   then you will see the live example of this coding. https://jsfiddle.net/csszilla/ssgp6mwr/4/   <html> <head> <title>csszilla</title> <style> .div1{ background:green; color:white; font-size:18px; resize: horizontal; overflow: auto; width:200px; height:200px; margin-bottom:10px; text-align:center; } .div2{    background:orange; color:white; font-size:18px; resize: vertical; overflow: auto; width:200px; height:200px; margin-bottom:10px; } .div3 {     background:#6666CC; color:white; font-size:18px; resize: both; overflow: auto; width:200px; height:200px; margin-bottom:10px; } ...