Bootstrap

javascript 拖拽调整div大小

在这里插入图片描述

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
        div {
    
            height: 200px;
            position: absolute;
            top: 0px;
        }
        .right {
    
            right: 0px;
        }
        .left {
    
            left: 0px;
        }
        .right,.left {
    
            width: 49.75%;
        }
        .drag {
    
            width: 0.5%;
            left: 49.75%
        }
    </style>
    <script src
;