如何使將鼠標懸停在兩個元素(這裏是分隔藍色和紅色的垂直線上)之間的邊界上是否可以調整每個元素的寬度?調整瀏覽器屏幕的兩半
我要找的https://stackedit.io/editor
行爲與<textarea>
調整的可能性這可能直接?
* { margin: 0; border: 0; padding: 0; }
textarea { background-color: red; width: 50%; position: absolute; top:0; left:0; height: 100%; }
#separator { cursor: ew-resize; position: absolute; top:0; width:1%; left:50%; height: 100%; }
#right { background-color: blue; width: 49%; position: absolute; top:0; right:0; height: 100%;}
<textarea>hello</textarea>
<div id="separator"></div>
<div id="right">yo</div>
在這裏回答[http://stackoverflow.com/questions/17855401/how-do-i-make-a-div-width-draggable](http://stackoverflow.com/questions/17855401/how-do -i-make-a-div-width-draggable) – Lockless
也許沒有絕對的位置。位置:絕對的; **意味着**的位置是**絕對**,不能也不會移動,不管怎樣。他們的位置被鎖定到座標 – Zoe
@Call_Back_Function是不是很容易沒有jQuery? – Basj