Resize on div element

前端 未结 11 1366
既然无缘
既然无缘 2020-11-28 08:31

jQuery has the resize() - event, but it just work with window.

jQuery(window).resize(function() { /* What ever */ });

This wor

11条回答
  •  無奈伤痛
    2020-11-28 09:11

    If you just want to resize the div itself you need to specify that in css style. You need to add overflow and resize property.

    Below is my code snippet

    #div1 {
            width: 90%;
            height: 350px;
            padding: 10px;
            border: 1px solid #aaaaaa;
            overflow: auto;
            resize: both;
        }
    
    

提交回复
热议问题